aboutsummaryrefslogtreecommitdiff
path: root/contrib/groff/grohtml/ordered_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/groff/grohtml/ordered_list.h')
-rw-r--r--contrib/groff/grohtml/ordered_list.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/groff/grohtml/ordered_list.h b/contrib/groff/grohtml/ordered_list.h
index 52fe1c9e605e..5f0c7e1d0c47 100644
--- a/contrib/groff/grohtml/ordered_list.h
+++ b/contrib/groff/grohtml/ordered_list.h
@@ -9,11 +9,11 @@
template <class T> class list_element
{
public:
- list_element *right;
- list_element *left;
+ list_element<T> *right;
+ list_element<T> *left;
- list_element (T *in);
- T *data;
+ list_element (T *in);
+ T *data;
};
template <class T> class ordered_list