mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-22 09:37:59 +02:00
compatible with gcc 5.3.1 amd 6.1.1
This commit is contained in:
@ -481,7 +481,11 @@ double XYRangeValues[4];
|
||||
bool IsXYRange[4];
|
||||
|
||||
/** Default timer between plots*/
|
||||
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 6)
|
||||
static constexpr double PLOT_TIMER_MS = 200;
|
||||
#else
|
||||
static const double PLOT_TIMER_MS = 200;
|
||||
#endif
|
||||
/** Specific timer value between plots */
|
||||
double timerValue;
|
||||
/** every nth frame when to plot */
|
||||
|
Reference in New Issue
Block a user