We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3fe8dd commit 4c83a48Copy full SHA for 4c83a48
code/constness/test.sol.cpp
@@ -19,10 +19,10 @@ const int* identitypConst(const int *a) {
19
20
struct ConstTest {
21
void hello(std::string &s) {
22
- std::cout << "Hello " << s << std::end;
+ std::cout << "Hello " << s << std::endl;
23
}
24
void helloConst(std::string &s) const {
25
26
27
};
28
0 commit comments