Opened 13 years ago
Last modified 13 years ago
#7948 closed bug
Bogus prototype for string::compare — at Version 1
Reported by: | pulkomandy | Owned by: | nobody |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | System | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description (last modified by )
I noticed the C++ standard has :
int String::compare(size_t pos1, size_t n1, const char* s) const;
While Haiku std/bastring.h declares :
int compare(const char* s, size_t pos1, size_t n1) const;
It is BeOS "legacy" (ie BeOS has the same problem), but it's a bit annoying when trying to write portable C++ code.
Can we do something about it without breaking binary compatibility ?
Note:
See TracTickets
for help on using tickets.