GitHub user kwallner opened a pull request:
https://github.com/apache/avro/pull/275
Change namespace definitions in C++. Use nested namespaces instead ofâ¦
Namespace definitions using colons are supported since C++17
(http://en.cppreference.com/w/cpp/language/namespace).
This fix makes the library usable for C++11 and avoids compiler error
"Compiler Error C2429"
(https://docs.microsoft.com/en-us/cpp/error-messages/compiler-errors-1/compiler-error-c2429).
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/kwallner/avro
feature/CppUseSimpleNestedNamespaces
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/avro/pull/275.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #275
----
commit ea23e37f8fe3bc87248d917dd539575103aacfef
Author: Karl Wallner <karl.wallner@...>
Date: 2017-12-28T11:40:18Z
Change namespace definitions in C++. Use nested namespaces instead of colon
separated.
----
---