From 90a01cb9f23ad1bf31f18f77cddd94e37ce5ebfa Mon Sep 17 00:00:00 2001 From: hartmann Date: Wed, 23 Oct 2002 17:04:00 +0000 Subject: [PATCH] Use < and > instead of < and >, resp. git-svn-id: https://svn.dealii.org/trunk@6721 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/faq.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/doc/faq.html b/deal.II/doc/faq.html index 63e0b0263e..37267bcdc5 100644 --- a/deal.II/doc/faq.html +++ b/deal.II/doc/faq.html @@ -96,13 +96,13 @@ situations like this:
-      template  struct Function {};
-      template  struct RHS : Function { RHS() {}; };
+      template <int dim> struct Function {};
+      template <int dim> struct RHS : Function { RHS() {}; };
 
-      template  void f () {
-        const RHS rhs;
+      template <int dim> void f () {
+        const RHS<dim> rhs;
       };
-      template void f<1> ();
+      template void f<1> ();
     
Here, the compiler reports -- 2.39.5