Use lower-case instead of camel-case

This commit is contained in:
Thog 2018-10-11 19:22:40 +02:00
parent 273023b2f4
commit 23b1368344
No known key found for this signature in database
GPG Key ID: 0CD291558FAFDBC6
5 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ namespace spv {
langInfo.push_back(std::make_pair(ELangJSON, "spirv.json"));
langInfo.push_back(std::make_pair(ELangLua, "spirv.lua"));
langInfo.push_back(std::make_pair(ELangPython, "spirv.py"));
langInfo.push_back(std::make_pair(ELangCSharp, "SpirV.cs"));
langInfo.push_back(std::make_pair(ELangCSharp, "spirv.cs"));
for (const auto& lang : langInfo) {
std::ofstream out(lang.second, std::ios::out);