File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12046,11 +12046,11 @@ struct VM {
1204612046 template <typename ...Args >
1204712047 static std::string brand (Args ...args ) {
1204812048 const flagset flags = core::arg_handler (args...);
12049- return brand (flags);
12049+ return internal_brand (flags);
1205012050 }
1205112051
1205212052
12053- static std::string brand (const flagset& flags = core::generate_default ()) {
12053+ static std::string internal_brand (const flagset& flags = core::generate_default ()) {
1205412054 // is the multiple setting flag enabled?
1205512055 const bool is_multiple = core::is_enabled (flags, MULTIPLE);
1205612056
@@ -12508,7 +12508,7 @@ struct VM {
1250812508
1250912509
1251012510 static std::string conclusion (const flagset &flags = core::generate_default ()) {
12511- std::string brand_tmp = brand (flags);
12511+ std::string brand_tmp = internal_brand (flags);
1251212512 const u8 percent_tmp = percentage (flags);
1251312513 const bool has_hardener = is_hardened ();
1251412514
@@ -12691,7 +12691,7 @@ struct VM {
1269112691
1269212692 // having this design avoids some niche errors
1269312693 void initialise (const flagset &flags) {
12694- brand = VM::brand (flags);
12694+ brand = VM::internal_brand (flags);
1269512695 type = VM::type (flags);
1269612696 conclusion = VM::conclusion (flags);
1269712697 is_vm = VM::detect (flags);
You can’t perform that action at this time.
0 commit comments