Changes have been pushed for the repository "fawkesrobotics/fawkes".

Clone:  https://github.com/fawkesrobotics/fawkes.git
Gitweb: https://github.com/fawkesrobotics/fawkes

The branch, thofmann/catch2 has been updated
        to  076d43b74a9a50e173e103b2e582aea0985be795 (commit)
      from  a708a315041bc722a3b92f1563bce0828945adb8 (commit)

https://github.com/fawkesrobotics/fawkes/tree/thofmann/catch2

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 076d43b74a9a50e173e103b2e582aea0985be795
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Mon Feb 10 16:26:40 2020 +0100
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Mon Feb 10 16:26:40 2020 +0100

    tools: do not disable warning `unused-but-set-variable` for clang
    
    The warning does not exist in clang.

https://github.com/fawkesrobotics/fawkes/commit/076d43b74

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


- *Summary* -----------------------------------------------------------
 src/tools/gtest/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


- *Diffs* -------------------------------------------------------------

- *commit* 076d43b74a9a50e173e103b2e582aea0985be795 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Mon Feb 10 16:26:40 2020 +0100
Subject: tools: do not disable warning `unused-but-set-variable` for clang

 src/tools/gtest/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

_Diff for modified files_:
diff --git a/src/tools/gtest/Makefile b/src/tools/gtest/Makefile
index 3b0952783..34bde3963 100644
--- a/src/tools/gtest/Makefile
+++ b/src/tools/gtest/Makefile
@@ -28,7 +28,9 @@ LIBS_all = $(LIBDIR)/test/fawkes.so
 
 ifeq ($(HAVE_GTEST)$(HAVE_CPP11),11)
   CFLAGS += $(CFLAGS_GTEST)
-  CFLAGS += -Wno-unused-but-set-variable
+  ifneq ($(CC),clang)
+    CFLAGS += -Wno-unused-but-set-variable
+  endif
   CFLAGS += $(CFLAGS_CPP11)
   LDFLAGS += $(LDFLAGS_GTEST)
   LIBS_test = $(LIBS_all)



_______________________________________________
fawkes-commits mailing list
fawkes-commits@lists.kbsg.rwth-aachen.de
https://lists.kbsg.rwth-aachen.de/listinfo/fawkes-commits

Reply via email to