From 75a921559225aa7243b4512c6284beb1f558153e Mon Sep 17 00:00:00 2001 From: John Bytheway Date: Fri, 14 Jun 2019 20:35:52 +0100 Subject: [PATCH] Remove obsolete comment --- src/item.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/item.h b/src/item.h index 82e3c9b867e9a..8a3c41538d6fc 100644 --- a/src/item.h +++ b/src/item.h @@ -1226,7 +1226,6 @@ class item : public visitable * All numeric values are returned as doubles and may be cast to the desired type. * * int v = itm.get_var("v", 0); // v will be an int - * long l = itm.get_var("v", 0l); // l will be a long * double d = itm.get_var("v", 0.0); // d will be a double * std::string s = itm.get_var("v", ""); // s will be a std::string * // no default means empty string as default: