Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
MSVC noexcept - works
#include <type_traits> void throwable(){ throw int(4); } struct T{ T() noexcept (true) { throwable(); } T(T&& ) noexcept (true) {} T(const T& ) noexcept (true) {} T& operator = (T&&) noexcept(true) { return *this; } T& operator = (const T&) noexcept(true) { return *this; } ~T() noexcept(false) {} }; int main(){ T a; (void)a; }
run
|
edit
|
history
|
help
0
Regex success
Ελλάδα !!!!
Memory example
ccloader
get_number_of_threads, windows
C++ MSVN Compiler Type Check
const reference life time extension
Computing the factorial of an integer using factorial and iteration
VC++ error LNK2001 with combined use of non-type template parameters
MSVC bug in __fastcall implementation !!!