Skip to content

Commit

Permalink
fix compile error.
Browse files Browse the repository at this point in the history
  • Loading branch information
JPeterMugaas committed Jun 30, 2024
1 parent 91ccdf6 commit 22f16e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion efxc2Compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void efxc2Compiler::SetupDefines(efxc2Utils::M_COMPILER_DEFINES _defines, std::v

void efxc2Compiler::print_defines(std::vector<D3D_SHADER_MACRO> const& defines) {
std::cout << "\t";
(void)M_FOR_EACH(defines, print_D3D_SHADER_MACRO);
(void)M_FOR_EACH(defines.begin(), defines.end(), print_D3D_SHADER_MACRO);
std::cout << ",\n";
}

Expand Down

0 comments on commit 22f16e8

Please sign in to comment.