From: Felix Dörre Date: Fri, 27 May 2016 19:49:43 +0000 (+0200) Subject: fix: backport of unique_ptr X-Git-Url: https://code.wpia.club/?p=cassiopeia.git;a=commitdiff_plain;h=ef087ff99d415a09008b0d8b359eb6a1d6d362cd fix: backport of unique_ptr --- diff --git a/src/util.h b/src/util.h old mode 100644 new mode 100755 index a091340..529820a --- a/src/util.h +++ b/src/util.h @@ -15,7 +15,7 @@ std::pair parseYearInterval( std::time_t t, const std::string std::unique_ptr openLogfile( const std::string &name ); -#if __GNUC__ > 5 || (__GNUC__ == 4 && __GNUC_MINOR__ > 8) +#if __GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ > 8) #else namespace std{ template