Use NULL instead of 0.

This commit is contained in:
Mark de Wever 2012-04-01 08:22:59 +00:00
parent 57353bd648
commit c8d190a000

View File

@ -100,7 +100,7 @@ public:
{ return this != &invalid; }
#else
operator safe_bool() const
{ return this != &invalid ? &safe_bool_impl::nonnull : 0; }
{ return this != &invalid ? &safe_bool_impl::nonnull : NULL; }
#endif
typedef std::vector<config*> child_list;