From adbcc263c03587cf3c2f3e98c77f65c6bd307102 Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Mon, 23 Sep 2019 11:56:15 +0200 Subject: [PATCH] [918-check-c-11-thread-support-in-configure] Ran tabify --- m4macros/ax_cpp11.m4 | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/m4macros/ax_cpp11.m4 b/m4macros/ax_cpp11.m4 index aae1668d42..444b773099 100644 --- a/m4macros/ax_cpp11.m4 +++ b/m4macros/ax_cpp11.m4 @@ -51,7 +51,7 @@ for retry in "none" "--std=c++11" "--std=c++0x" "--std=c++1x" "fail"; do [AC_LANG_PROGRAM( [class Foo { public: - virtual ~Foo() {}; + virtual ~Foo() {}; virtual void bar() final; };],[])], [AC_MSG_RESULT([yes])], @@ -64,12 +64,12 @@ for retry in "none" "--std=c++11" "--std=c++0x" "--std=c++1x" "fail"; do [AC_LANG_PROGRAM( [class Foo { public: - virtual ~Foo() {}; + virtual ~Foo() {}; virtual void foobar(); }; class Bar : public Foo { - public: - virtual ~Bar() {}; + public: + virtual ~Bar() {}; virtual void foobar() override; };],[])], [AC_MSG_RESULT([yes])], @@ -186,8 +186,8 @@ for retry in "none" "--std=c++11" "--std=c++0x" "--std=c++1x" "fail"; do [th.reset(new std::thread([[]]() { return; })); th->join();])], [AC_MSG_RESULT([yes])], - [AC_MSG_RESULT([no]) - continue]) + [AC_MSG_RESULT([no]) + continue]) AC_MSG_CHECKING(mutex support) feature="mutex" @@ -197,8 +197,8 @@ for retry in "none" "--std=c++11" "--std=c++0x" "--std=c++1x" "fail"; do std::mutex mtx;], [std::lock_guard lock(mtx);])], [AC_MSG_RESULT([yes])], - [AC_MSG_RESULT([no]) - continue]) + [AC_MSG_RESULT([no]) + continue]) AC_MSG_CHECKING(atomic support) feature="atomic" @@ -208,9 +208,9 @@ for retry in "none" "--std=c++11" "--std=c++0x" "--std=c++1x" "fail"; do std::atomic_flag flag;], [])], [AC_MSG_RESULT([yes]) - break], + break], [AC_MSG_RESULT([no]) - continue]) + continue]) done -- 2.47.2