Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
1094200e
Commit
1094200e
authored
May 17, 2001
by
Bill Hoffman
Browse files
BUG: fix to compile on hp with aCC
parent
4d86b681
Changes
4
Hide whitespace changes
Inline
Side-by-side
Source/cmCableWrapTclCommand.cxx
View file @
1094200e
...
...
@@ -42,7 +42,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include
"cmCacheManager.h"
#include
"cmTarget.h"
#include
"cmGeneratedFileStream.h"
#include
<strstream>
cmCableWrapTclCommand
::
cmCableWrapTclCommand
()
:
m_CableClassSet
(
NULL
)
...
...
Source/cmConfigure.h.in
View file @
1094200e
#undef CMAKE_NO_STD_NAMESPACE
#undef CMAKE_NO_ANSI_STREAM_HEADERS
#undef CMAKE_NO_STD_NAMESPACE
#undef CMAKE_NO_ANSI_STREAM_HEADERS
Source/cmGeneratedFileStream.h
View file @
1094200e
...
...
@@ -80,7 +80,7 @@ public:
/**
* Allow a test for whether the file is open.
*/
operator
bool
()
{
return
m_Stream
.
is_open
(
);
}
operator
bool
()
{
return
static_cast
<
bool
>
(
m_Stream
);
}
/**
* Close the file stream. This will cause the copy-if-different to the
...
...
Source/cmStandardIncludes.h
View file @
1094200e
...
...
@@ -64,9 +64,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
#include
<fstream>
#include
<iostream>
#include
<strstream>
#else
#include
<fstream.h>
#include
<iostream.h>
#include
<strstream.h>
#endif
#include
<vector>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment