Disabled unused variables

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@492 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2012-01-13 09:04:40 +00:00
parent 688e0e8feb
commit 807f5973fb
4 changed files with 30 additions and 29 deletions

View File

@@ -50,7 +50,7 @@ public:
typedef T value_type;
CmdOption(const T& _val) : val_(_val), valid_(true), enabled_(false) { }
CmdOption() : valid_(false), enabled_(false) { }
CmdOption() : val_(T()),valid_(false), enabled_(false) { }
// has been set and has a value
bool is_valid(void) const { return valid_; }