Skip to content

Commit

Permalink
Missed a couple wanrings. Build example dll
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Marsh committed Oct 12, 2017
1 parent 990c8d4 commit 6cdc830
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Binary file modified examples/button-clicker/Assets/Resources/discord-rpc.dll
Binary file not shown.
3 changes: 3 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,14 @@ if(WIN32)
add_library(discord-rpc ${RPC_LIBRARY_TYPE} ${BASE_RPC_SRC})
target_compile_options(discord-rpc PRIVATE /EHsc
/Wall
/wd4100 # unreferenced formal parameter
/wd4514 # unreferenced inline
/wd4625 # copy constructor deleted
/wd5026 # move constructor deleted
/wd4626 # move assignment operator deleted
/wd4668 # not defined preprocessor macro
/wd4710 # function not inlined
/wd4711 # function was inlined
/wd4820 # structure padding
/wd4946 # reinterpret_cast used between related classes
/wd5027 # move assignment operator was implicitly defined as deleted
Expand Down
2 changes: 1 addition & 1 deletion src/msg_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MsgQueue {
std::atomic_uint pendingSends_{0};

public:
MsgQueue(){}
MsgQueue() {}

ElementType* GetNextAddMessage()
{
Expand Down

0 comments on commit 6cdc830

Please sign in to comment.