I am using boost/program_options for my CLI application.
I am reading a variable named name from the user.
The variable CLI option called --name or -n for short name.
When i execute
... --name val ...
the variable is set to val (as expected).
But when i execute (accidentally)
... -name val ...
the variable is set to ame.
How can i configure boost to block this scenario ?