mirror of
https://github.com/boostorg/gil.git
synced 2026-02-01 20:42:10 +00:00
8 lines
108 B
C++
Executable File
8 lines
108 B
C++
Executable File
#include <exception>
|
|
|
|
void error_if(bool condition) {
|
|
if (condition)
|
|
throw std::exception();
|
|
}
|
|
|