Skip to content
Snippets Groups Projects
Verified Commit e7772f6e authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Fix windows specific value_type errors~

parent 73971c7f
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ namespace vkcv::shader {
DriverConfig config = default_driver_config();
config.target = TgtSPV;
config.output_filename = tmp_path.c_str();
config.output_filename = tmp_path.string().c_str();
codes = driver_compile(&config, module);
destroy_driver_config(&config);
......
......@@ -47,7 +47,7 @@ namespace vkcv::shader {
DriverConfig config = default_driver_config();
config.target = TgtSPV;
config.output_filename = tmp_path.c_str();
config.output_filename = tmp_path.string().c_str();
codes = driver_compile(&config, module);
destroy_driver_config(&config);
......
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