Remove dynamic exceptions
[anna.git] / source / config / Release.cpp
index 780d029..8bbbc87 100644 (file)
@@ -15,7 +15,7 @@
 using namespace std;
 using namespace anna;
 
-string config::Release::getVersion() throw() {
+string config::Release::getVersion() {
   static const int version = ANNA_VERSION;
   string result;
   int mainVersion = (version & 0xff0000) >> 16;
@@ -28,7 +28,7 @@ string config::Release::getVersion() throw() {
 }
 
 // (1) It only will use the main OS version
-string config::Release::getArchitecture() throw() {
+string config::Release::getArchitecture() {
   string result;
 #ifdef _MT
   result = "/MT";