-
Key: CPP11-147
-
Legacy Issue Number: 1747
-
Status: closed
-
Source: Anonymous
-
Summary:
Summary: The latest C++ mapping (document orbos/98-05-08) defines the
Any::from_string type asstruct from_string {
from_string(char* s, ULong b, Boolean nocopy = FALSE) : val(s),
bound(b) {}
...
};In ANSI C++, this disallows the following code:
any <<= Any::from_string("string literal");
This is because string literals in ANSI C++ are const char[], not char[].
Therefore, from_string should have an additional constructor to allow
insertion of a const char* as well. -
Reported: CPP 1.0b1 — Tue, 28 Jul 1998 04:00 GMT
-
Disposition: Resolved — CPP 1.0
-
Disposition Summary:
Close as duplicate of 2453.
-
Updated: Fri, 6 Mar 2015 20:58 GMT