Add missing include to use std::unique_ptr

This was causing issues when including this header from another file.
This commit is contained in:
Andrew Bonventre 2014-08-23 13:02:21 -04:00
parent 42ea795209
commit 050869177e

View file

@ -9,6 +9,7 @@
#ifndef STORAGE_ROCKSDB_INCLUDE_COMPACTION_FILTER_H_
#define STORAGE_ROCKSDB_INCLUDE_COMPACTION_FILTER_H_
#include <memory>
#include <string>
#include <vector>