Skip to content

Commit

Permalink
Bugfixes (#56)
Browse files Browse the repository at this point in the history
* Performance, usability, and consistency improvements:
  * Streamlined by using tuple everywhere
    * Previously, `std::array<std::any>` was used
  * Removed some redundant code, refactored to be more efficient
  * Added error detection via err_mesg string and exceptions
  • Loading branch information
jharmer95 authored Mar 19, 2021
1 parent 8ca8eb5 commit 8b539ca
Show file tree
Hide file tree
Showing 12 changed files with 650 additions and 648 deletions.
15 changes: 11 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1...3.19)

project(
"rpc.hpp"
VERSION 0.3.2
VERSION 0.3.3
DESCRIPTION "Simple RPC Header-Only Library"
LANGUAGES CXX)

Expand Down Expand Up @@ -65,9 +65,16 @@ if(CXX_MSVC)
/w14906
/w14928
/we4834
/bigobj)
set(MIN_WARNING /W1 /experimental:external /external:W0
/external:anglebrackets /wd4619 /bigobj)
/bigobj
-D_WIN32_WINNT=0x0A00)
set(MIN_WARNING
/W1
/experimental:external
/external:W0
/external:anglebrackets
/wd4619
/bigobj
-D_WIN32_WINNT=0x0A00)
elseif(CXX_GCC OR CXX_MINGW)
set(FULL_WARNING
-Wall
Expand Down
Loading

0 comments on commit 8b539ca

Please sign in to comment.