mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 04:00:34 +00:00
Avoid no symbols warning in MacOS
This commit is contained in:
parent
8fe9a74ff2
commit
6c5f26fcf7
@ -34,4 +34,9 @@ std::string operator"" s(const char* str, std::size_t len)
|
|||||||
} // namespace string_literals
|
} // namespace string_literals
|
||||||
} // namespace std
|
} // namespace std
|
||||||
|
|
||||||
|
#else
|
||||||
|
// Avoid "gnss_sdr_string_literals.cc.o has no symbols" warning in MacOS with a
|
||||||
|
// dummy symbol so ranlib does not complain
|
||||||
|
void avoid_no_symbols_warning() {}
|
||||||
|
|
||||||
#endif // __cplusplus == 201103L
|
#endif // __cplusplus == 201103L
|
||||||
|
Loading…
Reference in New Issue
Block a user