Suuports clang compiler
[anna.git] / source / core / util / Variable.cpp
index e0ecce1..9f45178 100644 (file)
@@ -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;