FIXED: error: expected ')' before 'PRIu64' on Linux when compiling CPU-only

This commit is contained in:
Marko Fabry 2016-04-24 13:16:03 +02:00
Родитель 29c065ae7c
Коммит 2627fc1c93
25 изменённых файлов: 43 добавлений и 20 удалений

Просмотреть файл

@ -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