List:Commits« Previous MessageNext Message »
From:Magnus Svensson Date:July 28 2008 9:41am
Subject:bzr commit into mysql-5.1-telco-6.4 branch (msvensson:2683)
View as plain text  
#At file:///data/msvensson/mysql/5.1-telco-6.4/

 2683 Magnus Svensson	2008-07-28
      assert -> require
modified:
  storage/ndb/src/mgmsrv/ConfigInfo.cpp

=== modified file 'storage/ndb/src/mgmsrv/ConfigInfo.cpp'
--- a/storage/ndb/src/mgmsrv/ConfigInfo.cpp	2008-07-25 10:02:59 +0000
+++ b/storage/ndb/src/mgmsrv/ConfigInfo.cpp	2008-07-28 09:41:16 +0000
@@ -2853,7 +2853,7 @@ ConfigInfo::sectionName(Uint32 section_t
       return API_TOKEN_PRINT;
       break;
     default:
-      assert(false);
+      require(false);
       break;
     }
     break;
@@ -2870,13 +2870,13 @@ ConfigInfo::sectionName(Uint32 section_t
       return "SCI";
       break;
     default:
-      assert(false);
+      require(false);
       break;
     }
     break;
 
   default:
-    assert(false);
+    require(false);
     break;
   }
 }

Thread
bzr commit into mysql-5.1-telco-6.4 branch (msvensson:2683) Magnus Svensson28 Jul