[Cmake-commits] CMake branch, next, updated. v2.8.12.1-6200-gb692db5
Stephen Kelly
steveire at gmail.com
Thu Dec 12 06:54:08 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via b692db5561a0cbecfacfcc468b70b9798016ade7 (commit)
via 5e96322fcf2808e2e68e15ab7a5b23b612ca269a (commit)
from 58a99f40bb9ee6cc5cb0b85b700733cc14cc3788 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b692db5561a0cbecfacfcc468b70b9798016ade7
commit b692db5561a0cbecfacfcc468b70b9798016ade7
Merge: 58a99f4 5e96322
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Thu Dec 12 06:54:02 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Dec 12 06:54:02 2013 -0500
Merge topic 'GenerateExportHeader-tests' into next
5e96322 Maybe fix MSVC6.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5e96322fcf2808e2e68e15ab7a5b23b612ca269a
commit 5e96322fcf2808e2e68e15ab7a5b23b612ca269a
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Thu Dec 12 12:51:13 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Thu Dec 12 12:53:21 2013 +0100
Maybe fix MSVC6.
diff --git a/Tests/Module/GenerateExportHeader/exportheader_test.cpp b/Tests/Module/GenerateExportHeader/exportheader_test.cpp
index e5f30fa..146374a 100644
--- a/Tests/Module/GenerateExportHeader/exportheader_test.cpp
+++ b/Tests/Module/GenerateExportHeader/exportheader_test.cpp
@@ -13,7 +13,7 @@
#include <fstream>
#include <iostream>
-#include <cstdlib>
+#include <stdlib.h>
#include <string>
void compare(const char* refName, const char* testName)
@@ -23,7 +23,7 @@ void compare(const char* refName, const char* testName)
if (!ref.is_open())
{
std::cout << "Could not open \"" << refName << "\"." << std::endl;
- std::exit(1);
+ exit(1);
}
std::ifstream test;
test.open(testName);
-----------------------------------------------------------------------
Summary of changes:
.../GenerateExportHeader/exportheader_test.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list