Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
No UD
#include <iostream> struct A { A(int) { std::clog << __LINE__ << std::endl; } ~A() { std::clog << __LINE__ << std::endl; } int f() const { std::clog << __LINE__ << std::endl; return 0; } }; int f(const A& a) { return a.f(); } void g(int) { std::clog << __LINE__ << std::endl; } int main() { g(f(0)); }
run
|
edit
|
history
|
help
0
infix to postfix v 1.0
xxx
Template function declaration to avoid usage of template in T::template f<int>()
Static cast of Enum
Problem_onoff_3
SFINAE with std::enable_if
Override keyword.cpp
post_decrement_example
algorithm_1
problem_soultion2