reduce import symbols

This commit is contained in:
krangelov
2021-11-26 15:00:24 +01:00
parent 4a68ea93b3
commit 3134a89307
2 changed files with 3 additions and 3 deletions

View File

@@ -112,8 +112,8 @@ private:
PGF_INTERNAL_DECL void unregister_process();
void lock(DB_scope_mode m);
void unlock();
PGF_INTERNAL_DECL void lock(DB_scope_mode m);
PGF_INTERNAL_DECL void unlock();
friend class DB_scope;
};

View File

@@ -55,7 +55,7 @@ void PgfWriter::write_double(double d)
unsigned rawexp;
uint64_t mantissa;
switch (fpclassify(d)) {
switch (::fpclassify(d)) {
case FP_NAN:
rawexp = 0x7ff;
mantissa = 1;