Skip to content

Commit

Permalink
Support release assert
Browse files Browse the repository at this point in the history
  • Loading branch information
chenBright committed Jul 8, 2023
1 parent fb0788a commit 009f5d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/brpc/details/naming_service_thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ NamingServiceThread::Actions::~Actions() {
void NamingServiceThread::Actions::AddServers(
const std::vector<ServerNode>&) {
// FIXME(gejun)
RELEASE_ASSERT(false, "Not implemented");
RELEASE_ASSERT_VERBOSE(false, "Not implemented");
}

void NamingServiceThread::Actions::RemoveServers(
const std::vector<ServerNode>&) {
// FIXME(gejun)
RELEASE_ASSERT(false, "Not implemented");
RELEASE_ASSERT_VERBOSE(false, "Not implemented");
}

void NamingServiceThread::Actions::ResetServers(
Expand Down
1 change: 1 addition & 0 deletions src/butil/scoped_generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include "butil/compiler_specific.h"
#include "butil/move.h"
#include "butil/macros.h"

namespace butil {

Expand Down

0 comments on commit 009f5d8

Please sign in to comment.