File indexing completed on 2024-04-21 03:49:47

0001 /*
0002     SPDX-FileCopyrightText: 2008 Torsten Rahn <tackat@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef MATHHELPER_H
0008 #define MATHHELPER_H
0009 
0010 #include <qglobal.h>
0011 
0012 #ifdef Q_CC_MSVC
0013 #include <math.h>
0014 
0015 qreal msvc_asinh(qreal x);
0016 #define asinh msvc_asinh
0017 
0018 qreal msvc_atanh(qreal x);
0019 #define atanh msvc_atanh
0020 #endif
0021 
0022 #endif  // MATHHELPER_H