11 lines
108 B
C++
11 lines
108 B
C++
|
#include <sstream>
|
||
|
|
||
|
void check()
|
||
|
{
|
||
|
std::ostringstream test;
|
||
|
}
|
||
|
|
||
|
void check2(std::ostringstream& test2)
|
||
|
{
|
||
|
}
|