Don't include <auto_ptr.h> if compiling with Clang/libc++ (auto_ptr.h doesn't exist)

This commit is contained in:
torger
2014-03-20 18:32:06 +01:00
parent dcf9d7c0ce
commit f75ac347ea
3 changed files with 6 additions and 1 deletions

2
rtgui/darkframe.h Normal file → Executable file
View File

@@ -19,7 +19,9 @@
#ifndef _DARKFRAME_H_
#define _DARKFRAME_H_
#ifndef __clang__
#include <auto_ptr.h>
#endif
#include <gtkmm.h>
#include "toolpanel.h"
#include "../rtengine/rawimage.h"