Skip to content

Commit

Permalink
Merge pull request #252 from oscar-system/issue/251/libstdcxx
Browse files Browse the repository at this point in the history
fix #251: adjust ostringstream constructor for recent libstdc++
  • Loading branch information
kalmarek authored Apr 11, 2020
2 parents 98c460d + 1cc1205 commit f84f4db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Polymake"
uuid = "d720cf60-89b5-51f5-aff5-213f193123e7"
repo = "https://github.com/oscar-system/Polymake.jl.git"
version = "0.3.2"
version = "0.3.3"

[deps]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
Expand Down
2 changes: 1 addition & 1 deletion deps/src/polymake_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pm::Integer new_integer_from_bigint(jl_value_t*);
template <typename T>
std::string show_small_object(const T& obj, bool print_typename = true)
{
std::ostringstream buffer;
std::ostringstream buffer("");
auto wrapped_buffer = wrap(buffer);
if (print_typename) {
wrapped_buffer << polymake::legible_typename(typeid(obj)) << pm::endl;
Expand Down

0 comments on commit f84f4db

Please sign in to comment.