diff options
Diffstat (limited to 'src/msg/async/frames_v2.h')
-rw-r--r-- | src/msg/async/frames_v2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msg/async/frames_v2.h b/src/msg/async/frames_v2.h index ddc42a489cf..2f187ceb769 100644 --- a/src/msg/async/frames_v2.h +++ b/src/msg/async/frames_v2.h @@ -403,14 +403,14 @@ protected: struct AuthRequestFrame : public ControlFrame<AuthRequestFrame, uint32_t, // auth method - vector<uint32_t>, // preferred modes + std::vector<uint32_t>, // preferred modes bufferlist> { // auth payload static const Tag tag = Tag::AUTH_REQUEST; using ControlFrame::Encode; using ControlFrame::Decode; inline uint32_t &method() { return get_val<0>(); } - inline vector<uint32_t> &preferred_modes() { return get_val<1>(); } + inline std::vector<uint32_t> &preferred_modes() { return get_val<1>(); } inline bufferlist &auth_payload() { return get_val<2>(); } protected: |