compact_set: add #includes for dependencies

This was previously working by side effects, I happened
to include it somewhere that its dependencies weren't
already included.

Signed-off-by: John Spray <john.spray@redhat.com>
This commit is contained in:
John Spray 2016-12-01 19:14:50 +00:00
parent f46b327bb0
commit 6f6ef708b0

View File

@ -12,7 +12,11 @@
#ifndef CEPH_COMPACT_SET_H
#define CEPH_COMPACT_SET_H
#include <set>
#include <stdlib.h>
#include "include/buffer.h"
#include "include/encoding.h"
template <class T, class Set>
class compact_set_base {