From 253cde0977885a6a70d93ffa232785a6709c5f58 Mon Sep 17 00:00:00 2001 From: Kees Monshouwer Date: Fri, 26 Jul 2013 20:57:29 +0200 Subject: [PATCH] silence dead code warning in version.cc --- pdns/version.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pdns/version.cc b/pdns/version.cc index e576c49705..3eceba95f5 100644 --- a/pdns/version.cc +++ b/pdns/version.cc @@ -30,8 +30,9 @@ string compilerVersion() return string("gcc "__VERSION__); #elif defined(_MSC_VER) return string("MSVC "<<_MSC_VER); -#endif // add other compilers here +#else // add other compilers here return string("Unknown compiler"); +#endif } void showProductVersion() -- 2.47.3