about summary refs log tree commit diff stats
path: root/002test.cc
diff options
context:
space:
mode:
Diffstat (limited to '002test.cc')
-rw-r--r--002test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/002test.cc b/002test.cc
index 12c68df9..99ef38b1 100644
--- a/002test.cc
+++ b/002test.cc
@@ -86,6 +86,7 @@ bool is_integer(const string& s) {
 
 long long int to_integer(string n) {
   char* end = NULL;
+  // safe because string.c_str() is guaranteed to be null-terminated
   long long int result = strtoll(n.c_str(), &end, /*any base*/0);
   assert(*end == '\0');
   return result;