X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0503f19ca8379dbea48ab9618dc587d3399e5a42..c6ea1fdaf924be4ee49a19d12f76e4fcd257bb0a:/include/wx/meta/convertible.h diff --git a/include/wx/meta/convertible.h b/include/wx/meta/convertible.h index d43fc2c74d..1b46f7f21d 100644 --- a/include/wx/meta/convertible.h +++ b/include/wx/meta/convertible.h @@ -17,8 +17,8 @@ template struct wxConvertibleTo_SizeHelper { - static char Match(B* pb); - static int Match(...); + static char Match(B* pb); + static int Match(...); }; // Helper to decide if an object of type D is convertible to type B (the test @@ -26,8 +26,13 @@ struct wxConvertibleTo_SizeHelper template struct wxConvertibleTo { - enum { value = sizeof(wxConvertibleTo_SizeHelper::Match(static_cast(NULL)))==sizeof(char) - }; + enum + { + value = + sizeof(wxConvertibleTo_SizeHelper::Match(static_cast(NULL))) + == + sizeof(char) + }; }; #endif // _WX_META_CONVERTIBLE_H_