Update of /cvsroot/compbench/CompBenchmarks++/Benchmark/Compiler
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27869
Modified Files:
BenchmarkContext-Compiler.h
Log Message:
language() is now public, and commented.
Index: BenchmarkContext-Compiler.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Compiler/BenchmarkContext-Compiler.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** BenchmarkContext-Compiler.h 19 Sep 2006 17:08:59 -0000 1.3
--- BenchmarkContext-Compiler.h 3 Oct 2006 15:45:59 -0000 1.4
***************
*** 55,60 ****
* \sa getCompilerVersion() */
virtual std::string getCompilerVersion(void) = 0;
-
- virtual char *language(void) = 0;
public:
/** Display compiler's information.
--- 55,58 ----
***************
*** 81,84 ****
--- 79,85 ----
virtual std::string Binary(void);
+ /** Gets compiler's language.
+ \return C or C++. */
+ virtual char *language(void) = 0;
/** Virtual destructor */
virtual ~CBMBenchmarkContextCompiler();
|