Skip to content

Commit

Permalink
標準コンテナとスマート・ポインタ・サポートの自動テストと使い方説明完了 Issue #24
Browse files Browse the repository at this point in the history
  バージョン名の"-Prerelease."を解除。
  2017/01/31の警告レベルアップ時の対処漏れ追加。
    msvcのデバッグ・ビルドでclangのDecl.h(C4389)とHashing.h(C4310)にて警告がでていたので修正。
    fast_serializer.hでC4251ディセーブル漏れ追加。

----------------- MD5 Hash Values -----------------
TheolizerDriver  : 237e5af395c8b8bd4162c97c923c4903
TheolizerLibrary : 1f50826361e1a8fda9cfe6a4d998e3d3
Library's Header : 5af7578870c837e4a82f3f60fcb61f6b
  • Loading branch information
yossi-tahara committed Feb 12, 2017
1 parent 2ff3ef1 commit e3f93d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ message(STATUS "CI_SERVICE =${CI_SERVICE}")
#-----------------------------------------------------------------------------

project(Theolizer VERSION 0.4.3)
set(TEMPORARY_VERSION "-Prerelease.")
#set(TEMPORARY_VERSION "-Prerelease.")

message(STATUS "PROJECT_VERSION=${PROJECT_VERSION}${TEMPORARY_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion source/driver/header_includes.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#ifdef _MSC_VER // start of disabling MSVC warnings
#pragma warning(push)
#pragma warning(disable:4100 4141 4146 4180 4244 4245 4258 4267 4291 4324 4345 4351 4355 4456 4457 4458 4459 4503 4624 4722 4800 4996)
#pragma warning(disable:4100 4141 4146 4180 4244 4245 4258 4267 4291 4310 4324 4345 4351 4355 4389 4456 4457 4458 4459 4503 4624 4722 4800 4996)
#endif

#include <theolizer/internal/avoid-trouble.h>
Expand Down
2 changes: 1 addition & 1 deletion source/library/theolizer/internal/serializer_fast.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4100)
#pragma warning(disable:4100 4251)
#endif

namespace theolizer
Expand Down

0 comments on commit e3f93d6

Please sign in to comment.