Skip to content

Commit d6c1935

Browse files
committed
explicitly define ctor
1 parent 99e057b commit d6c1935

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Manifest.cc

+8
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ struct BaseProfile {
122122
const mitama::maybe<bool> debug;
123123
const bool compDb;
124124
const mitama::maybe<std::uint8_t> optLevel;
125+
126+
BaseProfile(
127+
std::vector<std::string> cxxflags, std::vector<std::string> ldflags,
128+
bool lto, mitama::maybe<bool> debug, bool compDb,
129+
mitama::maybe<std::uint8_t> optLevel
130+
) noexcept
131+
: cxxflags(std::move(cxxflags)), ldflags(std::move(ldflags)), lto(lto),
132+
debug(debug), compDb(compDb), optLevel(optLevel) {}
125133
};
126134

127135
static Result<BaseProfile>

0 commit comments

Comments
 (0)