Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabi Melman <gmelman1@gmail.com>2018-05-30 15:25:40 +0300
committerGitHub <noreply@github.com>2018-05-30 15:25:40 +0300
commit1fcc896486dba24ad058450c85a36520b79ee082 (patch)
tree5e67354c9389743354772e2e24e7eb0495920039
parent4640c5cb50f03a39cdc70d13a7cd7ebd86fbf4b0 (diff)
parent4131347079050e72997bafc69b493627f458fb47 (diff)
Merge pull request #715 from JamesReynolds/master
Closes gabime/spdlog#74
-rw-r--r--include/spdlog/details/os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spdlog/details/os.h b/include/spdlog/details/os.h
index e48f8272..a9246de2 100644
--- a/include/spdlog/details/os.h
+++ b/include/spdlog/details/os.h
@@ -282,7 +282,7 @@ inline int utc_minutes_offset(const std::tm &tm = details::os::localtime())
return offset;
#else
-#if defined(sun) || defined(__sun)
+#if defined(sun) || defined(__sun) || defined(_AIX)
// 'tm_gmtoff' field is BSD extension and it's missing on SunOS/Solaris
struct helper
{