Skip to content
Snippets Groups Projects
Commit bf567c3e authored by Lukáš Korenčik's avatar Lukáš Korenčik
Browse files

MC: Split typedef in BCOptions to more smaller ones.

parent 5acad081
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,9 @@ struct BCParseError : brq::error { using brq::error::error; }; ...@@ -60,7 +60,9 @@ struct BCParseError : brq::error { using brq::error::error; };
struct BCOptions struct BCOptions
{ {
using Env = std::vector< std::tuple< std::string, std::vector< uint8_t > > >; using bstr = std::vector<uint8_t>;
using env_option = std::tuple< std::string, bstr >;
using Env = std::vector< env_option >;
brq::cmd_file input_file; brq::cmd_file input_file;
std::vector< std::string > ccopts; std::vector< std::string > ccopts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment