mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-10-05 05:00:54 +02:00
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
|