mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
clean: remove stdint_msvc.h
too old
This commit is contained in:
parent
6728f9346b
commit
0d38bcf60f
|
@ -1,14 +1,8 @@
|
|||
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
|
||||
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||||
|
||||
#if defined( _MSC_VER ) && _MSC_VER < 1800 // VS2012 and older
|
||||
#include <stdint_msvc.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <QUrl>
|
||||
|
||||
#include "article_netmgr.hh"
|
||||
#include "wstring_qt.hh"
|
||||
#include "gddebug.hh"
|
||||
|
|
|
@ -27,11 +27,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include <qglobal.h>
|
||||
#if defined( _MSC_VER ) && _MSC_VER < 1800 // VS2012 and older
|
||||
#include <stdint_msvc.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
//const std::string bgl_language[] = {
|
||||
#ifndef blgCode2Int
|
||||
|
|
|
@ -15,11 +15,7 @@
|
|||
#include <QSet>
|
||||
#include <QList>
|
||||
|
||||
#if defined( _MSC_VER ) && _MSC_VER < 1800 // VS2012 and older
|
||||
#include <stdint_msvc.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
/// A base for the dictionary which creates a btree index to look up
|
||||
/// the words.
|
||||
|
|
|
@ -8,11 +8,7 @@
|
|||
#include "file.hh"
|
||||
|
||||
#include <vector>
|
||||
#if defined( _MSC_VER ) && _MSC_VER < 1800 // VS2012 and older
|
||||
#include <stdint_msvc.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
/// A chunked compression storage. We use this for articles' bodies. The idea
|
||||
/// is to store data in a separately-compressed chunks, much like in dictzip,
|
||||
|
|
|
@ -9,11 +9,7 @@
|
|||
#include <QtXml>
|
||||
#include "gddebug.hh"
|
||||
|
||||
#if defined( _MSC_VER ) && _MSC_VER < 1800 // VS2012 and older
|
||||
#include <stdint_msvc.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
#include "shlobj.h"
|
||||
|
|
|
@ -3,11 +3,7 @@
|
|||
#include <map>
|
||||
#include <QCoreApplication>
|
||||
|
||||
#if defined( _MSC_VER ) && _MSC_VER < 1800 // VS2012 and older
|
||||
#include <stdint_msvc.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
||||
namespace Language {
|
||||
|
||||
|
|
Loading…
Reference in a new issue