Skip to content

Commit

Permalink
Added file include.
Browse files Browse the repository at this point in the history
Added cstdint header for uintptr_t (for C++11 or later)
Added stdint.h header for uintptr_t (for C++03)
  • Loading branch information
redboltz committed Aug 29, 2021
1 parent 860f7fc commit ca9f25b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions erb/v1/cpp03_zone.hpp.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "msgpack/cpp_config.hpp"
#include "msgpack/zone_decl.hpp"

#include <stdint.h>
#include <cstdlib>
#include <memory>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions include/msgpack/v1/detail/cpp03_zone.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "msgpack/cpp_config.hpp"
#include "msgpack/zone_decl.hpp"

#include <stdint.h>
#include <cstdlib>
#include <memory>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions include/msgpack/v1/detail/cpp11_zone.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "msgpack/cpp_config.hpp"
#include "msgpack/zone_decl.hpp"

#include <cstdint>
#include <cstdlib>
#include <memory>
#include <vector>
Expand Down

0 comments on commit ca9f25b

Please sign in to comment.