Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9091d826 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Suppress cert-dcl50-cpp tidy warnings."

parents 047f7272 a20e8a35
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@

namespace android::idmap2 {

// NOLINTNEXTLINE(cert-dcl50-cpp)
v2::Error::Error(const char* fmt, ...) {
  va_list ap;
  va_start(ap, fmt);
@@ -29,6 +30,7 @@ v2::Error::Error(const char* fmt, ...) {
  va_end(ap);
}

// NOLINTNEXTLINE(cert-dcl50-cpp)
v2::Error::Error(const Error& parent, const char* fmt, ...) : msg_(parent.msg_) {
  msg_.append(" -> ");