jamesderlin / dropt

dropt is yet another C library for parsing command-line options.
zlib License
42 stars 6 forks source link

`strstream` is deprecated and will be removed from the standard #10

Closed KOLANICH closed 1 year ago

KOLANICH commented 1 year ago

#include <strstream>

https://en.cppreference.com/w/cpp/io/strstream

strstream has been deprecated since C++98, std::stringstream and boost::iostreams::array are the recommended replacements

jamesderlin commented 1 year ago

Where do you see #include <strstream>?

jamesderlin commented 1 year ago

I don't see any use of a deprecated strstream header in dropt, so I don't understand what this issue is talking about. If you still think there's a problem that needs to be addressed, feel free to reopen this with more specific details.

KOLANICH commented 1 year ago

I'm sorry. It was in my code wrapping dropt (and so situated in Dropt.cpp).