blob: 5c7a8fa3c1cf277a3f608a5caf9f074fc75e8266 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
In file included from suncalc.cpp:47:
/usr/include/c++/v1/math.h:733:39: error: no member named 'fabsf' in the global
namespace; did you mean simply 'fabsf'?
abs(float __lcpp_x) _NOEXCEPT {return ::fabsf(__lcpp_x);}
^~
--- src/suncalc.cpp.orig 2018-08-25 18:51:49 UTC
+++ src/suncalc.cpp
@@ -25,8 +25,6 @@
#include "suncalc.h"
#include "services.h"
-namespace suncalc
-{
/*
SUNRISET.C - computes Sun rise/set times, start/end of twilight, and
@@ -49,6 +47,9 @@ Released to the public domain by Paul Schlyter, Decemb
#include <stdlib.h>
#include <getopt.h>
#include <string.h>
+
+namespace suncalc
+{
/* A macro to compute the number of days elapsed since 2000 Jan 0.0 */
/* (which is equal to 1999 Dec 31, 0h UT) */
|