| 11791 | } |
| 11792 | |
| 11793 | std::string VulkanHppGenerator::generateSuccessCode( std::string const & code ) const |
| 11794 | { |
| 11795 | // on each success code: prepend 'Result::e' to the tagged camel case version of the code |
| 11796 | return "Result::e" + generateTaggedCamelCase( code ); |
| 11797 | } |
| 11798 | |
| 11799 | std::string VulkanHppGenerator::generateSuccessCodeList( std::vector<std::string> const & successCodes, bool enumerating ) const |
| 11800 | { |
nothing calls this directly
no outgoing calls
no test coverage detected