Author: sebor
Date: Fri Mar 16 14:40:00 2007
New Revision: 519148
URL: http://svn.apache.org/viewvc?view=rev&rev=519148
Log:
2007-03-16 Martin Sebor <[EMAIL PROTECTED]>
* EXPLICIT_INSTANTIATION.cpp: Added comments.
Modified:
incubator/stdcxx/trunk/etc/config/src/EXPLICIT_INSTANTIATION.cpp
Modified: incubator/stdcxx/trunk/etc/config/src/EXPLICIT_INSTANTIATION.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/src/EXPLICIT_INSTANTIATION.cpp?view=diff&rev=519148&r1=519147&r2=519148
==============================================================================
--- incubator/stdcxx/trunk/etc/config/src/EXPLICIT_INSTANTIATION.cpp (original)
+++ incubator/stdcxx/trunk/etc/config/src/EXPLICIT_INSTANTIATION.cpp Fri Mar 16
14:40:00 2007
@@ -15,9 +15,11 @@
};
// the symbols expected to be produced by the explicit instantiation
-// directives are:
-// S<int>::bar(), foo<int>(int)
-// S<char>::bar(), foo<char>(char)
+// directives and their attributes are as follows:
+// TEXT S<int>::bar()
+// WEAK (or TEXT) foo<int>(int)
+// TEXT S<char>::bar()
+// WEAK (or TEXT) foo<char>(char)
// IMPLICIT_INSTANTIATION.cpp uses foo<int>(int)
template class S<int>;