blob: 2f19cb7e5f046a4f730b0e4c855aae33371dcf62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* This source code is released into the public domain.
*/
module;
#include <string>
#include <utility>
module nihil.ucl;
namespace nihil::ucl {
error::error(std::string what)
: generic_error(std::move(what))
{
}
} // namespace nihil::ucl
|