mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Add missing include:
* Compile previously failed on Mac with clang
This commit is contained in:
@@ -23,8 +23,9 @@
|
||||
#include <beast/nudb/error.h>
|
||||
#include <beast/nudb/mode.h>
|
||||
#include <beast/nudb/detail/config.h>
|
||||
#include <string.h>
|
||||
#include <cassert>
|
||||
#include <cerrno>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
@@ -75,7 +76,7 @@ private:
|
||||
std::string
|
||||
text (int errnum)
|
||||
{
|
||||
return ::strerror(errnum);
|
||||
return std::strerror(errnum);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user