FOC/L4RE: Upstream revision 47

This commit is contained in:
Sebastian Sumpf
2013-02-20 12:17:17 +01:00
parent 34af60da11
commit b22db346c8
127 changed files with 1856 additions and 1965 deletions

View File

@@ -0,0 +1,31 @@
INTERFACE:
template< typename T >
class Test
{
public:
void test_func();
};
IMPLEMENTATION:
IMPLEMENT
template< typename T >
// comment
void __attribute__((deprecated))
Test<T>::test_func()
{
}
PUBLIC
template< typename T > // comment 1
template<
typename X, // comment within template args list
typename X2 // another comment in tl args
>
// comment 2
void __attribute__((deprecated))
Test<T>::test_func2<X, X2>()
{
}