FIXED: error: expected ')' before 'PRIu64' on Linux when compiling CPU-only
This commit is contained in:
Родитель
29c065ae7c
Коммит
2627fc1c93
|
@ -12,7 +12,8 @@
|
|||
#define FORMAT_SPECIALIZE // to get the specialized version of the format routines
|
||||
#include "File.h"
|
||||
#include <string>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <locale>
|
||||
#ifdef _WIN32
|
||||
#define NOMINMAX
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
#include <vector>
|
||||
#include <map>
|
||||
#include <stdexcept>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
@ -8,7 +8,8 @@
|
|||
#include <stdio.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#ifdef _WIN32
|
||||
#define NOMINMAX
|
||||
#include "Windows.h"
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
#include <functional>
|
||||
#include <cctype>
|
||||
#include <errno.h>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <assert.h>
|
||||
#include <string.h> // for strerror()
|
||||
#include <stdexcept> // for exception
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#include "latticestorage.h"
|
||||
#include "simple_checked_arrays.h"
|
||||
#include "fileutil.h"
|
||||
#include <stdint.h>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
|
|
|
@ -10,7 +10,8 @@
|
|||
#include "Basics.h"
|
||||
#include <string> // for the error message in checkoverflow() only
|
||||
#include <stdexcept>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <cstdio>
|
||||
|
||||
#undef INITIAL_STRANGE // [v-hansu] intialize structs to strange values
|
||||
|
|
|
@ -28,7 +28,8 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <assert.h>
|
||||
#ifdef _WIN32
|
||||
#define NOMINMAX
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
|
||||
#include "Basics.h"
|
||||
#include <string>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <memory>
|
||||
|
||||
#pragma warning( disable: 4251 )
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
#include "DataReader.h"
|
||||
#include "BinaryReader.h"
|
||||
#include <limits.h>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
|
||||
namespace Microsoft { namespace MSR { namespace CNTK {
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <vector>
|
||||
#include "DataDeserializer.h"
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include "Indexer.h"
|
||||
#include "TextReaderConstants.h"
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <vector>
|
||||
#include "Descriptors.h"
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <cfloat>
|
||||
#include <limits>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <limits>
|
||||
#include "MLFDataDeserializer.h"
|
||||
|
|
|
@ -16,7 +16,8 @@
|
|||
#include <regex>
|
||||
#include <set>
|
||||
#include <unordered_map>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <limits.h>
|
||||
#include <wchar.h>
|
||||
#include "simplesenonehmm.h"
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
#include "latticearchive.h"
|
||||
#include "msra_mgram.h" // for MLF reading for numer lattices
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <set>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <opencv2/opencv.hpp>
|
||||
#include <numeric>
|
||||
|
|
|
@ -16,7 +16,8 @@
|
|||
#include <regex>
|
||||
#include <set>
|
||||
#include <unordered_map>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <limits.h>
|
||||
#include <wchar.h>
|
||||
//#include <iostream>
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
#include "latticearchive.h"
|
||||
#include "msra_mgram.h" // for MLF reading for numer lattices
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <set>
|
||||
|
|
|
@ -7,7 +7,8 @@
|
|||
|
||||
#include "stdafx.h"
|
||||
#include <stdexcept>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include "Basics.h"
|
||||
#include "SequenceParser.h"
|
||||
#include "fileutil.h"
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
#include <assert.h>
|
||||
#include <fstream>
|
||||
#include <map>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include "Basics.h"
|
||||
#include "fileutil.h"
|
||||
|
||||
|
|
|
@ -13,7 +13,8 @@
|
|||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include "Platform.h"
|
||||
#include "DataReader.h"
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#define _SCL_SECURE_NO_WARNINGS
|
||||
|
||||
#include <numeric>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include "SequencePacker.h"
|
||||
#include "ElementTypeUtils.h"
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
#include "Basics.h"
|
||||
#include "UCIParser.h"
|
||||
#include <stdexcept>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
|
||||
#if WIN32
|
||||
#define ftell64 _ftelli64
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
#include <algorithm>
|
||||
|
||||
#ifdef min
|
||||
|
|
Загрузка…
Ссылка в новой задаче