]> git.saurik.com Git - wxWidgets.git/commitdiff
Make wxQsort() definition exactly the same as declaration.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 4 Nov 2011 09:09:54 +0000 (09:09 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 4 Nov 2011 09:09:54 +0000 (09:09 +0000)
Remove the extra "const" in the first parameter.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69661 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/utilscmn.cpp

index 389c87769bf41cca07422112a4d6cd5f452907c4..13f052e7d9fbcea7cc8613aad98588b55df205fd 100644 (file)
@@ -814,7 +814,7 @@ typedef struct
       smaller partition.  This *guarantees* no more than log (n)
       stack size is needed (actually O(1) in this case)!  */
 
-void wxQsort(void *const pbase, size_t total_elems,
+void wxQsort(void* pbase, size_t total_elems,
              size_t size, wxSortCallback cmp, const void* user_data)
 {
   register char *base_ptr = (char *) pbase;