| 1352 | } |
| 1353 | |
| 1354 | void ClassCompiler::HandleMissingValidators() |
| 1355 | { |
| 1356 | for (const auto& it : m_MissingValidators) { |
| 1357 | m_Impl << "void ObjectImpl<" << it.first.first << ">::Validate" << it.first.second << "(const Lazy<" << it.second.Type.GetRealType() << ">& lvalue, const ValidationUtils& utils)" << std::endl |
| 1358 | << "{" << std::endl |
| 1359 | << "\t" << "SimpleValidate" << it.first.second << "(lvalue, utils);" << std::endl |
| 1360 | << "}" << std::endl << std::endl; |
| 1361 | } |
| 1362 | |
| 1363 | m_MissingValidators.clear(); |
| 1364 | } |
| 1365 | |
| 1366 | void ClassCompiler::CompileFile(const std::string& inputpath, |
| 1367 | const std::string& implpath, const std::string& headerpath) |
nothing calls this directly
no test coverage detected