mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-10-04 21:00:53 +02:00
Summary: resolves T12767 Reviewers: ivica Reviewed By: ivica Subscribers: miljen Tags: #spacetime Maniphest Tasks: T12767 Differential Revision: https://repo.mireo.local/D25970
16 lines
247 B
C++
16 lines
247 B
C++
#ifndef ASYNC_MQTT5_VECTOR_H
|
|
#define ASYNC_MQTT5_VECTOR_H
|
|
|
|
#include <vector>
|
|
|
|
#include "memory.h"
|
|
|
|
namespace pma {
|
|
|
|
template <class _ValueT>
|
|
using vector = std::vector<_ValueT, alloc<_ValueT>>;
|
|
|
|
} // namespace pma
|
|
|
|
#endif // !ASYNC_MQTT5_VECTOR_H
|