Attempted fix for gcc 4.5.0 complaint.

This commit is contained in:
Aaron Giles 2010-09-08 20:21:24 +00:00
parent acaf942e31
commit 100dddbb6c

View File

@ -652,7 +652,7 @@ protected:
// construction/destruction // construction/destruction
auto_finder_type(driver_device &base, const char *tag) auto_finder_type(driver_device &base, const char *tag)
: auto_finder_base(base, tag), : auto_finder_base(base, tag),
m_target(NULL) { } m_target(0) { }
// operators to make use transparent // operators to make use transparent
operator _TargetType() { return m_target; } operator _TargetType() { return m_target; }