wasmer/lib/llvm-backend/cpp
Nick Lewycky 83aa9c67c7 Replace throw() with noexcept. Unlike throw(), noexcept indicates that the function does not throw.
Before C++17, throw() was equivalent to wrapping the function in a try {} catch
{ std::unexpected(); }. In C++17 throw() was made equivalent to noexcept and
in C++20 throw() was removed.
2019-08-01 17:13:23 -07:00
..
object_loader.cpp Run clang-format-8 over the C++ code. No functionality change. 2019-08-01 17:12:46 -07:00
object_loader.hh Replace throw() with noexcept. Unlike throw(), noexcept indicates that the function does not throw. 2019-08-01 17:13:23 -07:00