File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 14
14
#define MRDOX_METADATA_TEMPLATE_HPP
15
15
16
16
#include < mrdox/Platform.hpp>
17
+ #include < mrdox/ADT/Optional.hpp>
17
18
#include < mrdox/Metadata/Type.hpp>
18
19
#include < optional>
19
20
#include < string>
@@ -46,15 +47,15 @@ struct NonTypeTParam
46
47
/* * Type of the non-type template parameter */
47
48
TypeInfo Type;
48
49
// Non-type template parameter default value (if any)
49
- std::optional <std::string> Default;
50
+ Optional <std::string> Default;
50
51
};
51
52
52
53
struct TemplateTParam
53
54
{
54
55
/* * Template parameters for the template template parameter */
55
56
std::vector<TParam> Params;
56
57
/* * Non-type template parameter default value (if any) */
57
- std::optional <std::string> Default;
58
+ Optional <std::string> Default;
58
59
};
59
60
60
61
// ----------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments