summaryrefslogtreecommitdiff
path: root/hwpfilter/source/list.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/list.hxx')
-rw-r--r--hwpfilter/source/list.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/list.hxx b/hwpfilter/source/list.hxx
index a605acad0dae..99dcc7f0ab21 100644
--- a/hwpfilter/source/list.hxx
+++ b/hwpfilter/source/list.hxx
@@ -43,7 +43,7 @@ class LinkedList
public:
/// construct list with one element (pItem) or no element (pItem == NULL)
- LinkedList( T* pItem = 0 );
+ explicit LinkedList( T* pItem = 0 );
~LinkedList();
};
@@ -59,7 +59,7 @@ class LinkedListIterator
public:
/// construct list with single element
- LinkedListIterator( LinkedList<T>* pList = 0 );
+ explicit LinkedListIterator( LinkedList<T>* pList = 0 );
~LinkedListIterator();
// bug-compatible with original LinkedList.h/cxx: Ignore parameter!