Naios / function2

Improved and configurable drop-in replacement to std::function that supports move only types, multiple overloads and more
http://naios.github.io/function2
Boost Software License 1.0
539 stars 47 forks source link

Conformance fix #18

Closed FrankHB closed 5 years ago

FrankHB commented 5 years ago

@Naios The code was not conforming to the standard limitations on reserved identifiers.

This commit makes it conforming to [lex.name]/3.1.

Since the change is very obvious (but sadly, the problem was not captured by the tools), tests are omitted.

Naios commented 5 years ago

Thanks