summaryrefslogtreecommitdiff
path: root/src/common/extract.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/extract.hpp')
-rw-r--r--src/common/extract.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/extract.hpp b/src/common/extract.hpp
index c60ce2a..3198d5d 100644
--- a/src/common/extract.hpp
+++ b/src/common/extract.hpp
@@ -67,7 +67,7 @@ bool extract(const_string str, T *iv)
// defer to integer version
if (!extract(str, &v))
return false;
- // TODO check bounds ...
+ // TODO check bounds using enum min/max as in SSCANF
*iv = static_cast<T>(v);
return true;
}