]> Dogcows Code - chaz/vimcoder/commitdiff
trailing whitespace cleanup
authorSam Lidder <sam.lidder@gmail.com>
Sat, 18 Aug 2012 21:04:15 +0000 (17:04 -0400)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Sun, 19 Aug 2012 01:08:23 +0000 (19:08 -0600)
src/com/dogcows/resources/C++Driver
src/com/dogcows/resources/C++Makefile

index 60ef873967713dd8bd18ec8331aa3f24df74c6cc..89e00f0678349fa54f17d27c59bd8fef604cebf6 100644 (file)
@@ -132,9 +132,9 @@ int main(int argc, char* argv[])
        bool    __exit_on_fail = false;
        int     __pass = 0;
        int     __fail = 0;
-       
+
        if (1 < argc) __exit_on_fail = true;
-       
+
        std::ifstream __in("testcases.txt");
        for(;;)
        {
@@ -142,18 +142,18 @@ int main(int argc, char* argv[])
                $METHODPARAMDECLARES$
                __in >> __expected >> $METHODPARAMSTREAMIN$;
                if (!__in.good()) break;
-               
+
                std::cout << "----------------------------------------" << std::endl
                          << "Test " << (__pass + __fail) << ": ";
                std::cout.flush();
-               
+
                __timer_start();
-               
+
                $CLASSNAME$ object;
                $RETURNTYPE$ __actual = object.$METHODNAME$($METHODPARAMNAMES$);
-               
+
                double __t = __timer_stop();
-               
+
                if (__equals(__actual, __expected))
                {
                        std::cout << "[PASS] in " << __t << " seconds." << std::endl;
index 83798d4823e2909ce8895c0928d36109eade9e7a..3b0a60bfdc4729e8248f73c7fddc08e5dc30a916 100644 (file)
@@ -3,13 +3,13 @@ CXX           = g++
 CXXFLAGS       = -O0 -ggdb -Wall
 
 all: driver
-       
+
 run: all
        ./driver
-       
+
 test: all
        ./driver -exit_on_fail
-       
+
 driver.o: $CLASSNAME$.o
 
 driver: driver.o
This page took 0.022845 seconds and 4 git commands to generate.