Improved code

Fixed Directory being copyable
Fixed ByteArray and String self-assignation
Made it clear Clock is copyable


Former-commit-id: 36702d8a389abe6d3faa1e283d9a20f0326041a6
This commit is contained in:
Lynix
2014-07-23 11:57:04 +02:00
parent 221e2583ac
commit 8b34e21e2f
4 changed files with 20 additions and 29 deletions

View File

@@ -8,6 +8,7 @@
#define NAZARA_DIRECTORY_HPP
#include <Nazara/Prerequesites.hpp>
#include <Nazara/Core/NonCopyable.hpp>
#include <Nazara/Core/String.hpp>
#if defined(NAZARA_PLATFORM_WINDOWS)
@@ -27,7 +28,7 @@
class NzDirectoryImpl;
class NAZARA_API NzDirectory
class NAZARA_API NzDirectory : NzNonCopyable
{
public:
NzDirectory();