Revert "re-add basic support for tr1 memory", breaks drone check.

This commit is contained in:
Valient Gough 2015-06-17 21:07:55 -07:00
parent a3220d2ce8
commit 0b813eb50b

View File

@ -22,16 +22,8 @@
#ifndef _SHARED_PTR_incl_
#define _SHARED_PTR_incl_
#include "config.h"
#ifdef HAVE_TR1_MEMORY
#include <tr1/memory>
using std::tr1::shared_ptr;
using std::tr1::dynamic_pointer_cast;
#else
#include <memory>
using std::shared_ptr;
using std::dynamic_pointer_cast;
#endif
#endif