[Cmake-commits] CMake branch, next, updated. v2.8.8-3066-g30bf2c8

Stephen Kelly steveire at gmail.com
Fri Jun 8 08:27:59 EDT 2012


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  30bf2c896e979ca24bcd913893394e46288df785 (commit)
       via  29704b77013f7f4ddbe22817a945578cce692afb (commit)
      from  8b651a5747bd02005cad2e1f8b2630b0bf4d1aa8 (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=30bf2c896e979ca24bcd913893394e46288df785
commit 30bf2c896e979ca24bcd913893394e46288df785
Merge: 8b651a5 29704b7
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Jun 8 08:27:55 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Jun 8 08:27:55 2012 -0400

    Merge topic 'position-independent-targets' into next
    
    29704b7 Define the dummy class method out of line.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=29704b77013f7f4ddbe22817a945578cce692afb
commit 29704b77013f7f4ddbe22817a945578cce692afb
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Fri Jun 8 14:26:21 2012 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Fri Jun 8 14:26:21 2012 +0200

    Define the dummy class method out of line.
    
    Watcom doesn't export inline methods it seems.

diff --git a/Tests/PositionIndependentTargets/pic_lib.cpp b/Tests/PositionIndependentTargets/pic_lib.cpp
index ec351b4..b8b25a3 100644
--- a/Tests/PositionIndependentTargets/pic_lib.cpp
+++ b/Tests/PositionIndependentTargets/pic_lib.cpp
@@ -3,8 +3,10 @@
 
 class PIC_TEST_EXPORT Dummy
 {
-  int dummy()
-  {
-    return 0;
-  }
+  int dummy();
 };
+
+int Dummy::dummy()
+{
+  return 0;
+}

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

Summary of changes:
 Tests/PositionIndependentTargets/pic_lib.cpp |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list