Update of /cvsroot/compbench/CompBenchmarks++/Benchmark
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv18730
Modified Files:
Benchmark.cpp Benchmark.h
Log Message:
packageName() is not a pure method anymore.
Index: Benchmark.h
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Benchmark.h 23 Nov 2006 16:35:32 -0000 1.10
--- Benchmark.h 28 Dec 2006 13:19:47 -0000 1.11
***************
*** 59,63 ****
/** Package name
* \return a std::string like 'gzip', without quotes */
! virtual std::string packageName(void) = 0;
/** Package version
--- 59,63 ----
/** Package name
* \return a std::string like 'gzip', without quotes */
! virtual std::string packageName(void);
/** Package version
Index: Benchmark.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/Benchmark/Benchmark.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** Benchmark.cpp 27 Dec 2006 18:21:45 -0000 1.16
--- Benchmark.cpp 28 Dec 2006 13:19:47 -0000 1.17
***************
*** 20,23 ****
--- 20,28 ----
}
+ std::string CBMBenchmark::packageName(void)
+ {
+ return("");
+ }
+
int CBMBenchmark::readStatus(void)
{
|