2022-11-20 23:11:54 +02:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#pragma warning(disable:4786) // character 255 <20>Ѿ<D1BE>°<EFBFBD> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
//#include <crtdbg.h>
|
2024-03-28 22:27:09 +02:00
|
|
|
|
#include <granny/granny.h>
|
2022-11-20 23:11:54 +02:00
|
|
|
|
|
|
|
|
|
#include "../eterBase/Utils.h"
|
|
|
|
|
#include "../eterBase/Debug.h"
|
|
|
|
|
#include "../eterBase/Stl.h"
|
|
|
|
|
|
|
|
|
|
#include "Util.h"
|
|
|
|
|
|
|
|
|
|
// Armadillo nanomite protection
|
|
|
|
|
#if !defined(NANOBEGIN) && !defined(NANOEND)
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
#define NANOBEGIN
|
|
|
|
|
#define NANOEND
|
|
|
|
|
#else
|
|
|
|
|
#include <armadillo/SecuredSections.h>
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|