[caching] change the emitter->hint value type

This commit is contained in:
Joe Thornber
2013-09-24 12:37:27 +01:00
parent 8408ab12f8
commit bd1a189298
3 changed files with 13 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
#ifndef CACHE_EMITTER_H
#define CACHE_EMITTER_H
#include <boost/shared_ptr.hpp>
#include <string>
#include "persistent-data/block.h"
#include <boost/shared_ptr.hpp>
#include <vector>
//----------------------------------------------------------------
namespace caching {
@@ -35,7 +35,7 @@ namespace caching {
virtual void end_hints() = 0;
virtual void hint(pd::block_address cblock,
std::string const &data) = 0;
std::vector<unsigned char> const &data) = 0;
};
}