From c23fab0b9cbf45a886eba829e1b200dedfed390a Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 24 Dec 2018 11:16:36 -0500 Subject: [PATCH] src: remove redefinition of DCHECK_LT As of 71bc7e1ce6881b4e6fe50459cc9866d47f96e4a4, the DCHECK_LT macro is defined unconditionally in util.h, making the definition in inspector/node_string.h generate a compiler warning. This commit removes the redefinition. --- src/inspector/node_string.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/inspector/node_string.h b/src/inspector/node_string.h index 4588364ab12196..72228828ebc680 100644 --- a/src/inspector/node_string.h +++ b/src/inspector/node_string.h @@ -75,6 +75,5 @@ extern size_t kNotFound; #ifndef DCHECK #define DCHECK CHECK - #define DCHECK_LT CHECK_LT #endif // DCHECK #endif // SRC_INSPECTOR_NODE_STRING_H_