Compile errors fixes

This commit is contained in:
Sergey Pisarchik 2014-04-17 15:30:52 +03:00 committed by Alex Zolotarev
parent 03f8dd2bb4
commit 4668e84483
4 changed files with 7 additions and 5 deletions

View file

@ -1,8 +1,8 @@
#pragma once
#include "../../std/shared_ptr.hpp"
#include "../../std/map.hpp"
#include "../../base/matrix.hpp"
#include "../std/shared_ptr.hpp"
#include "../std/map.hpp"
#include "../base/matrix.hpp"
#include "defines.hpp"
namespace graphics

View file

@ -8,7 +8,7 @@
#include "../coding/file_container.hpp"
#include "../../defines.hpp"
#include "../defines.hpp"
#include "../std/vector.hpp"
#include "../std/unordered_set.hpp"

View file

@ -8,6 +8,8 @@
#include <boost/shared_ptr.hpp>
using boost::shared_ptr;
using boost::static_pointer_cast;
template <typename T>
inline shared_ptr<T> make_shared_ptr(T * t)
{

View file

@ -8,7 +8,7 @@
#include "../std/scoped_ptr.hpp"
#include "../std/noncopyable.hpp"
#include "../../3party/jansson/jansson_handle.hpp"
#include "../3party/jansson/jansson_handle.hpp"
namespace guides
{