summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackLog.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-01-02 22:22:39 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-01-02 22:22:39 (GMT)
commitf00b344adac6ec59d5432311d3986a21582a62f9 (patch)
tree91860142ee20389fb57ef4d42993c6c489cb08da /Source/CPack/cmCPackLog.h
parentbbf1c2d275ce58a76cfe5d3a6539a3bb490456b7 (diff)
downloadCMake-f00b344adac6ec59d5432311d3986a21582a62f9.zip
CMake-f00b344adac6ec59d5432311d3986a21582a62f9.tar.gz
CMake-f00b344adac6ec59d5432311d3986a21582a62f9.tar.bz2
COMP: Fix compile errors
Diffstat (limited to 'Source/CPack/cmCPackLog.h')
-rw-r--r--Source/CPack/cmCPackLog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/CPack/cmCPackLog.h b/Source/CPack/cmCPackLog.h
index 526f0ae..f43f513 100644
--- a/Source/CPack/cmCPackLog.h
+++ b/Source/CPack/cmCPackLog.h
@@ -84,13 +84,13 @@ public:
bool GetQuiet() { return m_Quiet; }
//! Set the output stream
- void SetOutputStream(ostream* os) { m_DefaultOutput = os; }
+ void SetOutputStream(std::ostream* os) { m_DefaultOutput = os; }
//! Set the error stream
- void SetErrorStream(ostream* os) { m_DefaultError = os; }
+ void SetErrorStream(std::ostream* os) { m_DefaultError = os; }
//! Set the log output stream
- void SetLogOutputStream(ostream* os);
+ void SetLogOutputStream(std::ostream* os);
//! Set the log output file. The cmCPackLog will try to create file. If it
// cannot, it will report an error.