Include the standardized <memory> instead of non-standard <auto_ptr.h>

This commit is contained in:
torger 2014-03-24 15:08:14 +01:00
parent cc1ddf8b55
commit 0ec0ba01d0
3 changed files with 3 additions and 9 deletions

View File

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

View File

@ -19,9 +19,7 @@
#ifndef _FLATFIELD_H_
#define _FLATFIELD_H_
#ifndef __clang__
#include <auto_ptr.h>
#endif
#include <memory>
#include <gtkmm.h>
#include "adjuster.h"
#include "toolpanel.h"

View File

@ -19,9 +19,7 @@
#ifndef _ICMPANEL_
#define _ICMPANEL_
#ifndef __clang__
#include <auto_ptr.h>
#endif
#include <memory>
#include <gtkmm.h>
#include "adjuster.h"
#include "guiutils.h"