diff --git a/abi.html b/abi.html index 1cd5a65..6a0efab 100644 --- a/abi.html +++ b/abi.html @@ -4484,12 +4484,12 @@

5.1.2 General Structure

eqivalent function templates in the same namespace:
// a.cpp:
-template <int&rt; void foo() {}
-template <&rt; void foo<0>();
+template <int> void foo() {}
+template <> void foo<0>();
 
 // b.cpp:
-template <long&rt; void foo() {}
-template <&rt; void foo<0>();
+template <long> void foo() {} +template <> void foo<0>();

The C++ standard grants implementations broad flexibility to