From 7cb80544ba62f45b0ec566112e63dbbbbea36b77 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 26 Sep 2015 11:01:41 -0700 Subject: 2207 --- 001help.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '001help.cc') diff --git a/001help.cc b/001help.cc index 3fb7b905..0f1e32aa 100644 --- a/001help.cc +++ b/001help.cc @@ -76,7 +76,7 @@ bool is_equal(char* s, const char* lit) { // Corollary: don't use the size() method on containers, since it returns an // unsigned and that'll cause warnings about mixing signed and unsigned, // yadda-yadda. Instead use this macro below to perform an unsafe cast to -// signed. We'll just give up immediately if a container's every too large. +// signed. We'll just give up immediately if a container's ever too large. :(before "End Includes") #define SIZE(X) (assert((X).size() < (1LL<<(sizeof(long long int)*8-2))), static_cast((X).size())) // -- cgit 1.4.1-2-gfad0