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 "roboptim-core".

The branch, master has been updated
       via  4d0488538da5dc8eb960a9931119f7b86d7ab7c9 (commit)
       via  d20b1180529cafaa9d7c72f6e5cc3a7720dcaa2a (commit)
       via  40049391eabd3ff3540d1f83b7784aeac760196d (commit)
      from  48f933f82380b876d02e272d55b49b5752cb0fd0 (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 -----------------------------------------------------------------
commit 4d0488538da5dc8eb960a9931119f7b86d7ab7c9
Author: Thomas Moulard <thomas.moul...@gmail.com>
Date:   Sun Mar 21 14:49:23 2010 +0100

    Fix compilation error on Windows.
    
        * include/roboptim/core/portability.hh: Enable specific
        macro to solve size_t resolution error with MSVC.
        Reported by François Keith.
    
    Signed-off-by: Thomas Moulard <thomas.moul...@gmail.com>

diff --git a/ChangeLog b/ChangeLog
index 7aaf254..0f7af61 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2010-03-21  Thomas Moulard  <thomas.moul...@gmail.com>
 
+       Fix compilation error on Windows.
+       * include/roboptim/core/portability.hh: Enable specific
+       macro to solve size_t resolution error with MSVC.
+       Reported by François Keith.
+
+2010-03-21  Thomas Moulard  <thomas.moul...@gmail.com>
+
        Clean I/O header.
        * include/roboptim/core/io.hh: Remove
        self-inclusion and commented inclusion.
diff --git a/include/roboptim/core/portability.hh 
b/include/roboptim/core/portability.hh
index de00d87..495fcc4 100644
--- a/include/roboptim/core/portability.hh
+++ b/include/roboptim/core/portability.hh
@@ -65,4 +65,11 @@
   #define ROBOPTIM_LOCAL ROBOPTIM_DLLLOCAL
 #endif // ROBOPTIM_STATIC
 
+
+// Required to avoid size_t resolution error with MSVC. Triggered by
+// the boost/tuple/tuple_io.hpp inclusion in roboptim/core/io.hh.
+#ifdef _WIN32
+# define BOOST_NO_STD_LOCALE
+#endif
+
 #endif //! ROBOPTIM_CORE_PORTABILITY_HH

commit d20b1180529cafaa9d7c72f6e5cc3a7720dcaa2a
Author: Thomas Moulard <thomas.moul...@gmail.com>
Date:   Sun Mar 21 14:46:24 2010 +0100

    Clean I/O header.
    
        * include/roboptim/core/io.hh: Remove
        self-inclusion and commented inclusion.
    
    Signed-off-by: Thomas Moulard <thomas.moul...@gmail.com>

diff --git a/ChangeLog b/ChangeLog
index 2e2031f..7aaf254 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2010-03-21  Thomas Moulard  <thomas.moul...@gmail.com>
 
+       Clean I/O header.
+       * include/roboptim/core/io.hh: Remove
+       self-inclusion and commented inclusion.
+
+2010-03-21  Thomas Moulard  <thomas.moul...@gmail.com>
+
        Update MSVC project.
        * msvc/roboptim-core/roboptim-core.vcproj:
        Add ``solver.cc'' to files list.
diff --git a/include/roboptim/core/io.hh b/include/roboptim/core/io.hh
index 40f8f0f..d64b6d2 100644
--- a/include/roboptim/core/io.hh
+++ b/include/roboptim/core/io.hh
@@ -21,9 +21,7 @@
 # include <roboptim/core/debug.hh>
 
 # include <boost/numeric/ublas/io.hpp>
-//# include <boost/optional/optional_io.hpp>
 # include <boost/tuple/tuple_io.hpp>
 # include <boost/variant/detail/variant_io.hpp>
 
-# include <roboptim/core/io.hh>
 #endif //! ROBOPTIM_CORE_FWD_HH

commit 40049391eabd3ff3540d1f83b7784aeac760196d
Author: Thomas Moulard <thomas.moul...@gmail.com>
Date:   Sun Mar 21 14:51:47 2010 +0100

    Update MSVC project.
    
        * msvc/roboptim-core/roboptim-core.vcproj:
        Add ``solver.cc'' to files list.
            Reported by François Keith.
    
    Signed-off-by: Thomas Moulard <thomas.moul...@gmail.com>
    
    Conflicts:
    
        ChangeLog

diff --git a/ChangeLog b/ChangeLog
index 1f4b5d4..2e2031f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-03-21  Thomas Moulard  <thomas.moul...@gmail.com>
+
+       Update MSVC project.
+       * msvc/roboptim-core/roboptim-core.vcproj:
+       Add ``solver.cc'' to files list.
+       Reported by François Keith.
+
 2010-03-08  Thomas Moulard  <thomas.moul...@gmail.com>
 
        Synchronize.
diff --git a/msvc/roboptim-core/roboptim-core.vcproj 
b/msvc/roboptim-core/roboptim-core.vcproj
index 643d456..7013e10 100644
--- a/msvc/roboptim-core/roboptim-core.vcproj
+++ b/msvc/roboptim-core/roboptim-core.vcproj
@@ -250,9 +250,14 @@
                                >
                        </File>
                        <File
+                               RelativePath="..\..\src\solver.cc"
+                               >
+                       </File>
+                       <File
                                
RelativePath="..\..\src\twice-derivable-function.cc"
                                >
                        </File>
+
                        <File
                                RelativePath="..\..\src\util.cc"
                                >

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

Summary of changes:
 ChangeLog                               |   20 ++++++++++++++++++++
 include/roboptim/core/io.hh             |    2 --
 include/roboptim/core/portability.hh    |    7 +++++++
 msvc/roboptim-core/roboptim-core.vcproj |    5 +++++
 4 files changed, 32 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
roboptim-core

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
roboptim-commit mailing list
roboptim-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/roboptim-commit

Reply via email to