From fb18bd235bc716963c72c1dd6358176cb50516ae Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 2 Jan 2018 20:08:48 +0100 Subject: Add missing return statement causing segfault Added compile flags to give error when missing return statement --- src/Conf.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Conf.cpp') diff --git a/src/Conf.cpp b/src/Conf.cpp index 852fcd4..3b0e246 100644 --- a/src/Conf.cpp +++ b/src/Conf.cpp @@ -383,6 +383,7 @@ namespace sibs case PLATFORM_LINUX64: return "linux64"; case PLATFORM_WIN32: return "win32"; case PLATFORM_WIN64: return "win64"; + default: return nullptr; } } @@ -393,6 +394,7 @@ namespace sibs case OPT_LEV_NONE: return "none"; case OPT_LEV_DEBUG: return "debug"; case OPT_LEV_RELEASE: return "release"; + default: return nullptr; } } -- cgit v1.2.3