Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Forgetting to check end
//clang 3.7.0 #include <iostream> #include <vector> using namespace std; int main() { vector<string> v{"Hello", "World"}; for (auto it = v.begin(); /*oops */ ; ++it) { cout << *it << " "; } }
run
|
edit
|
history
|
help
0
Optional conversions
back_inserter example
for_each_argument
Copy uint64 data into uint32 with padding
MPL 2-0
SceneGraph Interviewee Task
template specialization inheritance solution
auto Keyword Example
Wrapper to pass shared_ptr to &, const &, *, const * through std::bind.
mddd