Fix template compilation
This commit is contained in:
Родитель
8c83adb693
Коммит
af7e33e45e
|
@ -4,6 +4,10 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#ifdef _WIN32
|
||||||
|
#else // assuming __unix__
|
||||||
|
#pragma GCC diagnostic ignored "-fpermissive"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <boost/noncopyable.hpp>
|
#include <boost/noncopyable.hpp>
|
||||||
#include "HTKDeserializer.h"
|
#include "HTKDeserializer.h"
|
||||||
|
@ -11,6 +15,7 @@
|
||||||
#include "MLFUtils.h"
|
#include "MLFUtils.h"
|
||||||
#include "FileWrapper.h"
|
#include "FileWrapper.h"
|
||||||
#include "Index.h"
|
#include "Index.h"
|
||||||
|
#include "File.h"
|
||||||
|
|
||||||
namespace CNTK {
|
namespace CNTK {
|
||||||
|
|
||||||
|
@ -445,3 +450,8 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#else // assuming __unix__
|
||||||
|
#pragma GCC diagnostic ignored "-pedantic"
|
||||||
|
#endif
|
Загрузка…
Ссылка в новой задаче