Fixed other similar include problems.

This commit is contained in:
Takatoshi Kondo 2021-11-02 09:57:37 +09:00
parent 683b6e42c6
commit 49bdd40eab
5 changed files with 7 additions and 7 deletions

View File

@ -11,8 +11,8 @@
#ifndef MSGPACK_ITERATOR_DECL_HPP
#define MSGPACK_ITERATOR_DECL_HPP
#include <msgpack/v1/iterator_decl.hpp>
#include <msgpack/v2/iterator_decl.hpp>
#include <msgpack/v3/iterator_decl.hpp>
#include "msgpack/v1/iterator_decl.hpp"
#include "msgpack/v2/iterator_decl.hpp"
#include "msgpack/v3/iterator_decl.hpp"
#endif // MSGPACK_ITERATOR_DECL_HPP

View File

@ -12,7 +12,7 @@
#include <tuple>
#include <msgpack/object_fwd.hpp>
#include "msgpack/object_fwd.hpp"
namespace msgpack {
/// @cond

View File

@ -12,7 +12,7 @@
#define MSGPACK_V1_ITERATOR_DECL_HPP
#if !defined(MSGPACK_USE_CPP03)
#include <msgpack/object_fwd.hpp>
#include "msgpack/object_fwd.hpp"
namespace msgpack {

View File

@ -12,7 +12,7 @@
#define MSGPACK_V2_ITERATOR_DECL_HPP
#if !defined(MSGPACK_USE_CPP03)
#include <msgpack/v1/iterator_decl.hpp>
#include "msgpack/v1/iterator_decl.hpp"
namespace msgpack {

View File

@ -12,7 +12,7 @@
#define MSGPACK_V3_ITERATOR_DECL_HPP
#if !defined(MSGPACK_USE_CPP03)
#include <msgpack/v2/iterator_decl.hpp>
#include "msgpack/v2/iterator_decl.hpp"
namespace msgpack {