| --- impl/avrogencpp.cc |
| +++ impl/avrogencpp.cc |
| @@ -710,7 +710,7 @@ void CodeGen::emitCopyright() { |
| } |
| |
| void CodeGen::emitGeneratedWarning() { |
| - os_ << "/* This code was generated by avrogencpp " << AVRO_VERSION << ". Do not edit.*/\n\n"; |
| + os_ << "/* This code was generated by avrogencpp " << "1.12.0" << ". Do not edit.*/\n\n"; |
| } |
| |
| string CodeGen::guard() { |
| @@ -826,7 +826,7 @@ int main(int argc, char **argv) { |
| } |
| |
| if (vm.count("version")) { |
| - std::cout << AVRO_VERSION << std::endl; |
| + std::cout << "1.12.0" << std::endl; |
| return 0; |
| } |
| |