diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-03-01 12:04:25 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-03-01 12:04:25 +0100 |
commit | 176f9b471b2ec67dd95e054d9a22ab87c8110b7c (patch) | |
tree | deae1ad544bd1a7eb585e60ae612aaa7ae63744f /nxcomp/src/Timestamp.cpp | |
parent | d156ce5ab6afa3bc67189f4985e1517d5aca52b3 (diff) | |
parent | 7c8214f31fd3d83e641067941573ebb89f4f4ddb (diff) | |
download | nx-libs-176f9b471b2ec67dd95e054d9a22ab87c8110b7c.tar.gz nx-libs-176f9b471b2ec67dd95e054d9a22ab87c8110b7c.tar.bz2 nx-libs-176f9b471b2ec67dd95e054d9a22ab87c8110b7c.zip |
Merge branch 'uli42-pr/fix_clang_warnings' into 3.6.x
Attributes GH PR #763: https://github.com/ArcticaProject/nx-libs/pull/763
Diffstat (limited to 'nxcomp/src/Timestamp.cpp')
-rw-r--r-- | nxcomp/src/Timestamp.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/nxcomp/src/Timestamp.cpp b/nxcomp/src/Timestamp.cpp index 4a9dd3347..273f2823b 100644 --- a/nxcomp/src/Timestamp.cpp +++ b/nxcomp/src/Timestamp.cpp @@ -49,7 +49,6 @@ std::string strTimestamp(const T_timestamp &ts) std::string ret; char ctime_now[26] = { }; - bool err = true; #if HAVE_CTIME_S errno_t retval = ::ctime_s(ctime_now, sizeof(ctime_now), static_cast<const time_t*>(&ts.tv_sec)); |