Преглед на файлове

Added leveldb::Status::IsInvalidArgument() method.

All other Status::Code enum values have an Is**() method with the one
exception of InvalidArgument.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=97166441
ld
cmumford преди 9 години
committed by Chris Mumford
родител
ревизия
5208e7952d
променени са 1 файла, в които са добавени 3 реда и са изтрити 0 реда
  1. +3
    -0
      include/leveldb/status.h

+ 3
- 0
include/leveldb/status.h Целия файл

@ -63,6 +63,9 @@ class Status {
// Returns true iff the status indicates a NotSupportedError.
bool IsNotSupportedError() const { return code() == kNotSupported; }
// Returns true iff the status indicates an InvalidArgument.
bool IsInvalidArgument() const { return code() == kInvalidArgument; }
// Return a string representation of this status suitable for printing.
// Returns the string "OK" for success.
std::string ToString() const;

Зареждане…
Отказ
Запис