mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	Looks like our string_view fix hasn't worked --- tweak.
This commit is contained in:
		| @@ -43,8 +43,9 @@ int main(int argc, const char* argv[]) | ||||
|             { | ||||
|                 const auto* descriptor = | ||||
|                     FilesystemProto::FilesystemType_descriptor(); | ||||
|                 std::string name = | ||||
|                     descriptor->FindValueByNumber(fs.type())->name(); | ||||
|                 auto name = | ||||
|                     (std::string)descriptor->FindValueByNumber(fs.type()) | ||||
|                         ->name(); | ||||
|  | ||||
|                 filesystems.insert(name); | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user