We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78495ff commit 13f6fbdCopy full SHA for 13f6fbd
.circleci/config.yml
@@ -10,7 +10,7 @@ jobs:
10
- checkout
11
- run:
12
name: Installing GCC and CMake
13
- command: 'apt-get update && apt-get install -y gcc g++ cmake lcov curl'
+ command: 'apt-get update && apt-get install -y gcc-7 cmake lcov curl'
14
15
name: Build
16
command: cmake -DCOMPILE_TESTS=ON -DCOMPILE_EXAMPLES=ON -DCODE_COVERAGE=ON . && cmake --build .
include/jsonrpccxx/typemapper.hpp
@@ -52,10 +52,8 @@ namespace jsonrpccxx {
52
return "array";
53
case json::value_t::string:
54
return "string";
55
- case json::value_t::null:
56
- return "null";
57
default:
58
- return "unknown type";
+ return "null";
59
}
60
61
0 commit comments