[Cmake-commits] CMake branch, next, updated. v3.8.0-rc1-414-g0df414a

Brad King brad.king at kitware.com
Tue Feb 21 10:40:09 EST 2017


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  0df414a55acaa3bc4a9aaeb655980cf80c1606fa (commit)
       via  88df3416e65ddbc849da08d1b7a920380a578749 (commit)
      from  3d40fcd01487700b8130d03e0b247bb1fe6ea9d6 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0df414a55acaa3bc4a9aaeb655980cf80c1606fa
commit 0df414a55acaa3bc4a9aaeb655980cf80c1606fa
Merge: 3d40fcd 88df341
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Feb 21 10:40:09 2017 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Feb 21 10:40:09 2017 -0500

    Merge topic 'autogen_json' into next
    
    88df3416 Autogen: Make tests C++98 compatible


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=88df3416e65ddbc849da08d1b7a920380a578749
commit 88df3416e65ddbc849da08d1b7a920380a578749
Author:     Sebastian Holtermann <sebholt at xwmw.org>
AuthorDate: Tue Feb 21 16:27:42 2017 +0100
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Feb 21 10:39:32 2017 -0500

    Autogen: Make tests C++98 compatible

diff --git a/Tests/QtAutogen/mocInclude/ObjA.cpp b/Tests/QtAutogen/mocInclude/ObjA.cpp
index 2ee47ec..1b0311d 100644
--- a/Tests/QtAutogen/mocInclude/ObjA.cpp
+++ b/Tests/QtAutogen/mocInclude/ObjA.cpp
@@ -5,8 +5,8 @@ class SubObjA : public QObject
   Q_OBJECT
 
 public:
-  SubObjA() = default;
-  ~SubObjA() = default;
+  SubObjA() {}
+  ~SubObjA() {}
 
   Q_SLOT
   void aSlot();
diff --git a/Tests/QtAutogen/mocInclude/ObjB.cpp b/Tests/QtAutogen/mocInclude/ObjB.cpp
index abec06a..5ff315d 100644
--- a/Tests/QtAutogen/mocInclude/ObjB.cpp
+++ b/Tests/QtAutogen/mocInclude/ObjB.cpp
@@ -5,8 +5,8 @@ class SubObjB : public QObject
   Q_OBJECT
 
 public:
-  SubObjB() = default;
-  ~SubObjB() = default;
+  SubObjB() {}
+  ~SubObjB() {}
 
   Q_SLOT
   void aSlot();
diff --git a/Tests/QtAutogen/mocInclude/ObjC.cpp b/Tests/QtAutogen/mocInclude/ObjC.cpp
index bdcdb13..8ca34cb 100644
--- a/Tests/QtAutogen/mocInclude/ObjC.cpp
+++ b/Tests/QtAutogen/mocInclude/ObjC.cpp
@@ -5,8 +5,8 @@ class SubObjC : public QObject
   Q_OBJECT
 
 public:
-  SubObjC() = default;
-  ~SubObjC() = default;
+  SubObjC() {}
+  ~SubObjC() {}
 
   Q_SLOT
   void aSlot();
diff --git a/Tests/QtAutogen/mocInclude/ObjD.cpp b/Tests/QtAutogen/mocInclude/ObjD.cpp
index 9145ba3..c18aec1 100644
--- a/Tests/QtAutogen/mocInclude/ObjD.cpp
+++ b/Tests/QtAutogen/mocInclude/ObjD.cpp
@@ -5,8 +5,8 @@ class SubObjD : public QObject
   Q_OBJECT
 
 public:
-  SubObjD() = default;
-  ~SubObjD() = default;
+  SubObjD() {}
+  ~SubObjD() {}
 
   Q_SLOT
   void aSlot();
diff --git a/Tests/QtAutogen/mocInclude/subA/SubObjA.cpp b/Tests/QtAutogen/mocInclude/subA/SubObjA.cpp
index d780942..a05f6e3 100644
--- a/Tests/QtAutogen/mocInclude/subA/SubObjA.cpp
+++ b/Tests/QtAutogen/mocInclude/subA/SubObjA.cpp
@@ -7,8 +7,8 @@ class SubObjA : public QObject
   Q_OBJECT
 
 public:
-  SubObjA() = default;
-  ~SubObjA() = default;
+  SubObjA() {}
+  ~SubObjA() {}
 
   Q_SLOT
   void aSlot();
diff --git a/Tests/QtAutogen/mocInclude/subB/SubObjB.cpp b/Tests/QtAutogen/mocInclude/subB/SubObjB.cpp
index e602e06..1e77639 100644
--- a/Tests/QtAutogen/mocInclude/subB/SubObjB.cpp
+++ b/Tests/QtAutogen/mocInclude/subB/SubObjB.cpp
@@ -7,8 +7,8 @@ class SubObjB : public QObject
   Q_OBJECT
 
 public:
-  SubObjB() = default;
-  ~SubObjB() = default;
+  SubObjB() {}
+  ~SubObjB() {}
 
   Q_SLOT
   void aSlot();
diff --git a/Tests/QtAutogen/mocInclude/subC/SubObjC.cpp b/Tests/QtAutogen/mocInclude/subC/SubObjC.cpp
index fb2d1ec..c2d94ef 100644
--- a/Tests/QtAutogen/mocInclude/subC/SubObjC.cpp
+++ b/Tests/QtAutogen/mocInclude/subC/SubObjC.cpp
@@ -7,8 +7,8 @@ class SubObjC : public QObject
   Q_OBJECT
 
 public:
-  SubObjC() = default;
-  ~SubObjC() = default;
+  SubObjC() {}
+  ~SubObjC() {}
 
   Q_SLOT
   void aSlot();

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

Summary of changes:
 Tests/QtAutogen/mocInclude/ObjA.cpp         |    4 ++--
 Tests/QtAutogen/mocInclude/ObjB.cpp         |    4 ++--
 Tests/QtAutogen/mocInclude/ObjC.cpp         |    4 ++--
 Tests/QtAutogen/mocInclude/ObjD.cpp         |    4 ++--
 Tests/QtAutogen/mocInclude/subA/SubObjA.cpp |    4 ++--
 Tests/QtAutogen/mocInclude/subB/SubObjB.cpp |    4 ++--
 Tests/QtAutogen/mocInclude/subC/SubObjC.cpp |    4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list