From 63bb2da4d81f4cac02f7fee4d1bf8a339821700e Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Thu, 11 May 2017 14:27:40 -0700 Subject: [PATCH] make some compilers happy Commit f10e4f8 causes some old compilers to complain about implicit return from non-void function. A false positive error but make the compiler happy so it stops complaining. --- src/env_universal_common.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/env_universal_common.cpp b/src/env_universal_common.cpp index 8466a4ab6..9c9268162 100644 --- a/src/env_universal_common.cpp +++ b/src/env_universal_common.cpp @@ -1385,6 +1385,8 @@ std::unique_ptr universal_notifier_t::new_notifier_for_str return make_unique(test_path); } } + DIE("should never reach this statement"); + return NULL; } // Default implementations.