|
2 |
edited tags
|
||
|
1 |
|
||
Namespaces and Operator Overloading in C++When authoring a library in a particular namespace, it's often convenient to provide overloaded operators for the classes in that namespace. It seems (at least with g++) that the overloaded operators can be implemented either in the library's namespace:
or the global namespace
From my testing, they both seem to work fine. Is there any practical difference between these two options? Is either approach better?
|
||||
