Fix formating
This commit is contained in:
committed by
Patrick Niklaus
parent
a915542916
commit
29d1b34140
@@ -28,8 +28,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
#ifndef STORAGE_HPP
|
||||
#define STORAGE_HPP
|
||||
|
||||
#include "storage/shared_datatype.hpp"
|
||||
#include "storage/shared_data_index.hpp"
|
||||
#include "storage/shared_datatype.hpp"
|
||||
#include "storage/storage_config.hpp"
|
||||
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
@@ -50,8 +50,9 @@ util::vector_view<T> make_vector_view(const SharedDataIndex &index, const std::s
|
||||
return util::vector_view<T>(index.GetBlockPtr<T>(name), index.GetBlockEntries(name));
|
||||
}
|
||||
|
||||
template<>
|
||||
inline util::vector_view<bool> make_vector_view(const SharedDataIndex &index, const std::string &name)
|
||||
template <>
|
||||
inline util::vector_view<bool> make_vector_view(const SharedDataIndex &index,
|
||||
const std::string &name)
|
||||
{
|
||||
return util::vector_view<bool>(index.GetBlockPtr<util::vector_view<bool>::Word>(name),
|
||||
index.GetBlockEntries(name));
|
||||
|
||||
Reference in New Issue
Block a user