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  423af8912360106d15eac4a0790de2845fb85627 (commit)
       via  2116e23193b14ca83adaa6c42424d54d37460693 (commit)
      from  1dc41a22bcc63cfc65565b5b6794347ce514a469 (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=423af8912360106d15eac4a0790de2845fb85627
commit 423af8912360106d15eac4a0790de2845fb85627
Merge: 1dc41a2 2116e23
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Jun 7 15:17:07 2012 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Thu Jun 7 15:17:07 2012 -0400

    Merge topic 'no-std-stringstream' into next
    
    2116e23 Avoid std::stringstream(openmode) signature (#13272)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2116e23193b14ca83adaa6c42424d54d37460693
commit 2116e23193b14ca83adaa6c42424d54d37460693
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Jun 7 15:15:47 2012 -0400
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Thu Jun 7 15:15:47 2012 -0400

    Avoid std::stringstream(openmode) signature (#13272)
    
    Our approximate stringstream implementation provided when the standard
    one is not available does not support the openmode argument.

diff --git a/Source/cmQtAutomoc.cxx b/Source/cmQtAutomoc.cxx
index 3b8f9d8..113d678 100644
--- a/Source/cmQtAutomoc.cxx
+++ b/Source/cmQtAutomoc.cxx
@@ -550,7 +550,7 @@ bool cmQtAutomoc::RunAutomoc()
     this->GenerateMoc(it->first, it->second);
     }
 
-  cmsys_ios::stringstream outStream(std::ios::out);
+  cmsys_ios::stringstream outStream;
   outStream << "/* This file is autogenerated, do not edit*/\n";
 
   bool automocCppChanged = false;

-----------------------------------------------------------------------

Summary of changes:
 Source/cmQtAutomoc.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to