]> git.lyx.org Git - lyx.git/blob - src/support/checktr1.h
File missing in the tarball
[lyx.git] / src / support / checktr1.h
1 // -*- C++ -*-
2 /**
3  * \file checktr1.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Peter Kümmel
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_CHECKTR1_H
13 #define LYX_CHECKTR1_H
14
15 #if defined(_MSC_VER) && (_MSC_VER >= 1600)
16 #define LYX_USE_TR1
17 #endif
18
19 #if __GNUC__ == 4 && __GNUC_MINOR__ >= 4
20 #define LYX_USE_TR1
21 #endif
22
23
24 #endif