Miscellaneous small absl removals

pull/1124/head
Jason Rhinelander 4 years ago
parent 870062e8cc
commit ba1b20153e

@ -12,7 +12,6 @@
#include <service/context.hpp>
#include <util/logging/logger.h>
#include <absl/strings/str_split.h>
#include <cxxopts.hpp>
#include <csignal>

@ -6,7 +6,7 @@
#include <util/bencode.hpp>
#include <util/thread/threading.hpp>
#include <absl/base/thread_annotations.h>
#include <util/thread/annotations.hpp>
#include <map>
namespace llarp
@ -57,7 +57,7 @@ namespace llarp
/// check if this router should have paths built over it
bool
IsBadForPath(const RouterID& r, uint64_t chances = 8)
LOCK_RETURNED(m_ProfilesMutex);
EXCLUDES(m_ProfilesMutex);
/// check if this router should be connected directly to
bool

@ -2,8 +2,6 @@
#include <util/mem.h>
#include <cstdlib>
#include <absl/base/attributes.h>
namespace llarp
{
void
@ -19,9 +17,7 @@ namespace llarp
} // namespace llarp
void
llarp_mem_slab(ABSL_ATTRIBUTE_UNUSED struct llarp_alloc *mem,
ABSL_ATTRIBUTE_UNUSED uint32_t *buf,
ABSL_ATTRIBUTE_UNUSED size_t sz)
llarp_mem_slab(struct llarp_alloc * /*mem*/, uint32_t * /*buf*/, size_t /*sz*/)
{
// not implemented
abort();

Loading…
Cancel
Save