Adds an experimental CMake build script; makes the samples compile without warnings on Windows.

This commit is contained in:
zhanyong.wan
2009-12-29 19:45:33 +00:00
parent 4d004650c9
commit 1d6df4be08
4 changed files with 282 additions and 4 deletions

View File

@@ -115,6 +115,9 @@ class PreCalculatedPrimeTable : public PrimeTable {
const int is_prime_size_;
bool* const is_prime_;
// Disables compiler wqarning "assignment operator could ot be generated."
void operator=(const PreCalculatedPrimeTable& rhs);
};
#endif // GTEST_SAMPLES_PRIME_TABLES_H_