Fixed typos.

Fixed design.
Takatoshi Kondo
2016-01-21 20:34:50 +09:00
parent 356540366f
commit ccdf06698e
2 changed files with 8 additions and 4 deletions
+3 -1
@@ -1,4 +1,6 @@
# msgpack-c This is a documentation of msgpack-c
# msgpack-c
This is a documentation of msgpack-c
This documentation focuses on C++11 and C++03.
+5 -3
@@ -1,4 +1,6 @@
# msgpack-c This is a documentation of msgpack-c
# msgpack-c
This is a documentation of msgpack-c
This documentation focuses on C++11 and C++03.
@@ -14,7 +16,7 @@ Add msgpack-c/include as an include path for your project.
g++ -Ipath_to_msgpack-c/include -DMSGPACK_DISABLE_LEGACY_NIL your_program.cpp
```
See [MSGPACK_DISABKE_LEGACY_NIL](v1_1_cpp_configure#msgpack_disable_legacy_nil-since-140)
See [MSGPACK_DISABLE_LEGACY_NIL](v1_1_cpp_configure#msgpack_disable_legacy_nil-since-140)
## C++11 support
@@ -25,7 +27,7 @@ C++11 functionalities.
g++ -std=c++11 -Ipath_to_msgpack-c/include -DMSGPACK_DISABLE_LEGACY_NIL your_program.cpp
```
See [MSGPACK_DISABKE_LEGACY_NIL](v1_1_cpp_configure#msgpack_disable_legacy_nil-since-140)
See [MSGPACK_DISABLE_LEGACY_NIL](v1_1_cpp_configure#msgpack_disable_legacy_nil-since-140)
## Test and Install