Address numbuf compiler warnings. (#300)

This commit is contained in:
Robert Nishihara
2017-02-20 22:42:03 -08:00
committed by Philipp Moritz
parent 334aed9fa9
commit 3e67d28922
3 changed files with 9 additions and 3 deletions
+5
View File
@@ -96,6 +96,11 @@
/* This should be defined if we want to check calls to DCHECK. */
#define RAY_DCHECK
/* Arrow also defines the DCHECK macro, so undo that definition. */
#ifdef DCHECK
#undef DCHECK
#endif
#ifdef RAY_DCHECK
#define DCHECK(COND) CHECK(COND)
#else