Style fixes.

This commit is contained in:
Ben Vanik
2015-08-08 16:40:14 -07:00
parent a92566dfc5
commit 0686227d23
5 changed files with 24 additions and 22 deletions

View File

@@ -208,8 +208,8 @@ template <typename T>
class object_ref {
public:
object_ref() noexcept : value_(nullptr) {}
object_ref(nullptr_t) noexcept : value_(nullptr) {
} // NOLINT(runtime/explicit)
object_ref(nullptr_t) noexcept // NOLINT(runtime/explicit)
: value_(nullptr) {}
object_ref& operator=(nullptr_t) noexcept {
reset();
return (*this);