blob: 8964e0a93014f0083d00dada515dbb5b87b07282 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// file : libbrep/common.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <libbrep/common.hxx>
namespace brep
{
const version wildcard_version (0, "0", nullopt, nullopt, 0);
// unbuildable_reason
//
string
to_string (unbuildable_reason r)
{
switch (r)
{
case unbuildable_reason::stub: return "stub";
case unbuildable_reason::test: return "test";
case unbuildable_reason::external: return "external";
case unbuildable_reason::unbuildable: return "unbuildable";
}
return string (); // Should never reach.
}
unbuildable_reason
to_unbuildable_reason (const string& r)
{
if (r == "stub") return unbuildable_reason::stub;
else if (r == "test") return unbuildable_reason::test;
else if (r == "external") return unbuildable_reason::external;
else if (r == "unbuildable") return unbuildable_reason::unbuildable;
else throw invalid_argument ("invalid unbuildable reason '" + r + "'");
}
}
|