Delete Image.inl.save-failed

Former-commit-id: 830baf88d81513f7cbf498d728186f896077d0ed [formerly edf52cb3946dbe72e007fa5d3c895903f01758b8]
Former-commit-id: 4d6cdde8c24c8692569fc5bac03a44997a173607
This commit is contained in:
Lynix 2016-07-12 17:16:20 +02:00 committed by GitHub
parent 3dde6ede29
commit 9bd6d07d04
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <memory>
#include <Nazara/Utility/Debug.hpp>
namespace Nz
{
template<typename... Args>
ImageRef Image::New(Args&&... args)
{
std::unique_ptr<Image> object(new Image(std::forward<Args>(args)...));
object->SetPersistent(false);
return object.release();
}
}
#include <Nazara/Utility/DebugOff.hpp>