src/core/test/callback-test-suite.cc
changeset 7252 c8200621e252
parent 7169 358f71a624d8
child 9079 1e5921e6507d
--- a/src/core/test/callback-test-suite.cc	Sun May 22 21:57:24 2011 -0700
+++ b/src/core/test/callback-test-suite.cc	Sun May 22 22:28:15 2011 -0700
@@ -31,10 +31,10 @@
   BasicCallbackTestCase ();
   virtual ~BasicCallbackTestCase () {}
 
-  void Target1 (void) { m_test1 = true;}
-  int Target2 (void) { m_test2 = true; return 2;}
-  void Target3 (double a) { m_test3 = true;}
-  int Target4 (double a, int b) { m_test4 = true; return 4;}
+  void Target1 (void) { m_test1 = true; }
+  int Target2 (void) { m_test2 = true; return 2; }
+  void Target3 (double a) { m_test3 = true; }
+  int Target4 (double a, int b) { m_test4 = true; return 4; }
 
 private:
   virtual void DoRun (void);
@@ -161,10 +161,10 @@
   MakeCallbackTestCase ();
   virtual ~MakeCallbackTestCase () {}
 
-  void Target1 (void) { m_test1 = true;}
-  int Target2 (void) { m_test2 = true; return 2;}
-  void Target3 (double a) { m_test3 = true;}
-  int Target4 (double a, int b) { m_test4 = true; return 4;}
+  void Target1 (void) { m_test1 = true; }
+  int Target2 (void) { m_test2 = true; return 2; }
+  void Target3 (double a) { m_test3 = true; }
+  int Target4 (double a, int b) { m_test4 = true; return 4; }
 
 private:
   virtual void DoRun (void);
@@ -387,7 +387,7 @@
   NullifyCallbackTestCase ();
   virtual ~NullifyCallbackTestCase () {}
 
-  void Target1 (void) { m_test1 = true;}
+  void Target1 (void) { m_test1 = true; }
 
 private:
   virtual void DoRun (void);
@@ -435,7 +435,7 @@
   MakeCallbackTemplatesTestCase ();
   virtual ~MakeCallbackTemplatesTestCase () {}
 
-  void Target1 (void) { m_test1 = true;}
+  void Target1 (void) { m_test1 = true; }
 
 private:
   virtual void DoRun (void);