summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emutempl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emutempl.h')
-rw-r--r--src/emu/emutempl.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/emu/emutempl.h b/src/emu/emutempl.h
index 5d21b46194c..da963ada56a 100644
--- a/src/emu/emutempl.h
+++ b/src/emu/emutempl.h
@@ -61,9 +61,9 @@ public:
// construction/destruction
simple_list(resource_pool &pool = global_resource_pool())
: m_head(NULL),
- m_tail(NULL),
- m_pool(pool),
- m_count(0) { }
+ m_tail(NULL),
+ m_pool(pool),
+ m_count(0) { }
virtual ~simple_list() { reset(); }
@@ -258,10 +258,10 @@ public:
private:
// internal state
- _ElementType * m_head; // head of the singly-linked list
- _ElementType * m_tail; // tail of the singly-linked list
- resource_pool & m_pool; // resource pool where objects are freed
- int m_count; // number of objects in the list
+ _ElementType * m_head; // head of the singly-linked list
+ _ElementType * m_tail; // tail of the singly-linked list
+ resource_pool & m_pool; // resource pool where objects are freed
+ int m_count; // number of objects in the list
};
@@ -279,7 +279,7 @@ public:
// construction/destruction
simple_list_wrapper(_ObjectType *object)
: m_next(NULL),
- m_object(object) { }
+ m_object(object) { }
// operators
operator _ObjectType *() { return m_object; }
@@ -293,8 +293,8 @@ public:
private:
// internal state
- simple_list_wrapper * m_next;
- _ObjectType * m_object;
+ simple_list_wrapper * m_next;
+ _ObjectType * m_object;
};
@@ -330,7 +330,7 @@ public:
private:
// internal state
- simple_list<_ItemType> m_freelist; // list of free objects
+ simple_list<_ItemType> m_freelist; // list of free objects
};
@@ -425,9 +425,9 @@ public:
private:
// internal state
- simple_list<_ElementType> m_list;
- tagmap_t<_ElementType *> m_map;
+ simple_list<_ElementType> m_list;
+ tagmap_t<_ElementType *> m_map;
};
-#endif /* __EMUTEMPL_H__ */
+#endif /* __EMUTEMPL_H__ */