diff options
Diffstat (limited to 'libcxx/docs/DesignDocs/DebugMode.rst')
-rw-r--r-- | libcxx/docs/DesignDocs/DebugMode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/docs/DesignDocs/DebugMode.rst b/libcxx/docs/DesignDocs/DebugMode.rst index 3b997d44607..1ce438d5316 100644 --- a/libcxx/docs/DesignDocs/DebugMode.rst +++ b/libcxx/docs/DesignDocs/DebugMode.rst @@ -53,7 +53,7 @@ assertion handler as follows: #define _LIBCPP_DEBUG 1 #include <string> - int main() { + int main(int, char**) { std::__libcpp_debug_function = std::__libcpp_throw_debug_function; try { std::string::iterator bad_it; |