Fix errors on compilation with c++17

This commit is contained in:
Adam Jiang 2022-05-18 21:51:45 +08:00
parent db4963048d
commit 58a12b67b2

View File

@ -16,7 +16,12 @@
#include <chrono>
#include <numeric>
#include <atomic>
#ifdef UUID_USING_CXX20_SPAN
#include <span>
#else
#include <gsl/gsl>
#endif
#ifdef _WIN32
@ -950,4 +955,4 @@ namespace std
};
}
#endif /* STDUUID_H */
#endif /* STDUUID_H */