[Compbench-devel] CompBenchmarks++/libcompbenchmarks/Compiler/Compiler-GCC Compiler-GCC.cpp, 1.1,
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2007-02-06 19:41:50
|
Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Compiler/Compiler-GCC In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv22286 Modified Files: Compiler-GCC.cpp Compiler-GCC.h Log Message: Changes in CBM::Compiler method names. Index: Compiler-GCC.h =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Compiler/Compiler-GCC/Compiler-GCC.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Compiler-GCC.h 22 Jan 2007 18:24:21 -0000 1.1 --- Compiler-GCC.h 6 Feb 2007 19:41:44 -0000 1.2 *************** *** 22,26 **** virtual std::string getCompilerName(void); virtual std::string getCompilerVersion(void); ! virtual char *language(void); public: --- 22,26 ---- virtual std::string getCompilerName(void); virtual std::string getCompilerVersion(void); ! virtual char *Language(void); public: *************** *** 42,46 **** virtual std::string getCompilerName(void); virtual std::string getCompilerVersion(void); ! virtual char *language(void); public: --- 42,46 ---- virtual std::string getCompilerName(void); virtual std::string getCompilerVersion(void); ! virtual char *Language(void); public: Index: Compiler-GCC.cpp =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Compiler/Compiler-GCC/Compiler-GCC.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Compiler-GCC.cpp 22 Jan 2007 18:24:21 -0000 1.1 --- Compiler-GCC.cpp 6 Feb 2007 19:41:44 -0000 1.2 *************** *** 67,71 **** } ! char *CompilerGCC::language(void) { return("C"); --- 67,71 ---- } ! char *CompilerGCC::Language(void) { return("C"); *************** *** 129,133 **** } ! char *CompilerGCC_cpp::language(void) { return("C++"); --- 129,133 ---- } ! char *CompilerGCC_cpp::Language(void) { return("C++"); |