X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fcore%2Futil%2FVariable.cpp;h=9f45178ce009e1497178f1bf751cf70e4ae32a69;hb=5256cb543a9d35b610df19bd227cde977186aef0;hp=e0ecce17190510c4b49349f9e7cdd5bc9665575f;hpb=3e258840b15577cb8bda3cdedd0b9b88e16404b3;p=anna.git diff --git a/source/core/util/Variable.cpp b/source/core/util/Variable.cpp index e0ecce1..9f45178 100644 --- a/source/core/util/Variable.cpp +++ b/source/core/util/Variable.cpp @@ -2,7 +2,7 @@ // // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo // -// https://bitbucket.org/testillano/anna +// http://redmine.teslayout.com/projects/anna-suite // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions @@ -14,7 +14,7 @@ // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. -// * Neither the name of Google Inc. nor the names of its +// * Neither the name of the copyright holder nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // @@ -60,6 +60,7 @@ Variable::Variable(const char* name, const Type::_v type) : case Type::Float: a_value.a_float = &a_aux.theFloat; break; case Type::Double: a_value.a_double = &a_aux.theDouble; break; case Type::Custom: a_value.a_custom = NULL; break; + default: break; } } @@ -76,6 +77,7 @@ Variable::~Variable() { delete a_value.a_dataBlock; a_value.a_dataBlock = NULL; break; + default: break; } } @@ -171,6 +173,7 @@ throw(RuntimeException) { switch(a_type) { case Type::Integer: result = *a_value.a_integer; break; case Type::Integer64: result = *a_value.a_longInteger; break; + default: break; } return result; @@ -199,6 +202,7 @@ throw(RuntimeException) { switch(a_type) { case Type::Float: result = *a_value.a_float; break; case Type::Double: result = (float) *a_value.a_double; break; + default: break; } return result; @@ -213,6 +217,7 @@ throw(RuntimeException) { switch(a_type) { case Type::Float: result = (double) *a_value.a_float; break; case Type::Double: result = *a_value.a_double; break; + default: break; } return result; @@ -237,6 +242,7 @@ throw() { case Type::Float: result += functions::asString("%f", *a_value.a_float); break; case Type::Double: result += functions::asString("%g", *a_value.a_double); break; case Type::Custom: result += functions::asHexString(anna_ptrnumber_cast(a_value.a_custom)); break; + default: break; } } @@ -256,6 +262,7 @@ throw() { case Type::Float: result = a_value.a_float; break; case Type::Double: result = a_value.a_double; break; case Type::Custom: result = a_value.a_custom; break; + default: break; } return result; @@ -274,6 +281,7 @@ throw() { case Type::Float: result = a_value.a_float; break; case Type::Double: result = a_value.a_double; break; case Type::Custom: result = a_value.a_custom; break; + default: break; } return result;