0_0_17230930_7278.cpp: In function 'void quicksort(double*, double*)':
0_0_17230930_7278.cpp:15:19: error: cannot convert 'double*' to 'int*' in initialization
for(int *left=s,*right=e;right-left>0;)
^
0_0_17230930_7278.cpp:15:28: error: cannot convert 'double*' to 'int*' in initialization
for(int *left=s,*right=e;right-left>0;)
^
0_0_17230930_7278.cpp:20:27: error: no matching function for call to 'swap(double*&, int*&)'
swap(key,right);
^
0_0_17230930_7278.cpp:20:27: note: candidates are:
0_0_17230930_7278.cpp:4:6: note: void swap(int*, int*)
void swap(int *a, int *b)
^
0_0_17230930_7278.cpp:4:6: note: no known conversion for argument 1 from 'double*' to 'int*'
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:52:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/locale_classes.h:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/ios_base.h:41,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:42,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:2736:5: note: template<class _CharT, class _Traits, class _Alloc> void std::swap(std::basic_string<_CharT, _Traits, _Alloc>&, std::basic_string<_CharT, _Traits, _Alloc>&)
swap(basic_string<_CharT, _Traits, _Alloc>& __lhs,
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:2736:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:20:27: note: mismatched types 'std::basic_string<_CharT, _Traits, _Alloc>' and 'double*'
swap(key,right);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:64:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:254:5: note: template<class _T1, class _T2> void std::swap(std::pair<_T1, _T2>&, std::pair<_T1, _T2>&)
swap(pair<_T1, _T2>& __x, pair<_T1, _T2>& __y)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:254:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:20:27: note: mismatched types 'std::pair<_T1, _T2>' and 'double*'
swap(key,right);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:59:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:64,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:185:5: note: template<class _Tp, long long unsigned int _Nm> void std::swap(_Tp (&)[_Nm], _Tp (&)[_Nm])
swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:185:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:20:27: note: mismatched types '_Tp [_Nm]' and 'double*'
swap(key,right);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:59:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:64,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:166:5: note: template<class _Tp> void std::swap(_Tp&, _Tp&)
swap(_Tp& __a, _Tp& __b)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:166:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:20:27: note: deduced conflicting types for parameter '_Tp' ('double*' and 'int*')
swap(key,right);
^
0_0_17230930_7278.cpp:21:17: error: cannot convert 'int*' to 'double*' in assignment
key = right;
^
0_0_17230930_7278.cpp:27:26: error: no matching function for call to 'swap(double*&, int*&)'
swap(key,left);
^
0_0_17230930_7278.cpp:27:26: note: candidates are:
0_0_17230930_7278.cpp:4:6: note: void swap(int*, int*)
void swap(int *a, int *b)
^
0_0_17230930_7278.cpp:4:6: note: no known conversion for argument 1 from 'double*' to 'int*'
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/string:52:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/locale_classes.h:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/ios_base.h:41,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:42,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:2736:5: note: template<class _CharT, class _Traits, class _Alloc> void std::swap(std::basic_string<_CharT, _Traits, _Alloc>&, std::basic_string<_CharT, _Traits, _Alloc>&)
swap(basic_string<_CharT, _Traits, _Alloc>& __lhs,
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/basic_string.h:2736:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:27:26: note: mismatched types 'std::basic_string<_CharT, _Traits, _Alloc>' and 'double*'
swap(key,left);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:64:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:254:5: note: template<class _T1, class _T2> void std::swap(std::pair<_T1, _T2>&, std::pair<_T1, _T2>&)
swap(pair<_T1, _T2>& __x, pair<_T1, _T2>& __y)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:254:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:27:26: note: mismatched types 'std::pair<_T1, _T2>' and 'double*'
swap(key,left);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:59:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:64,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:185:5: note: template<class _Tp, long long unsigned int _Nm> void std::swap(_Tp (&)[_Nm], _Tp (&)[_Nm])
swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:185:5: note: template argument deduction/substitution failed:
0_0_17230930_7278.cpp:27:26: note: mismatched types '_Tp [_Nm]' and 'double*'
swap(key,left);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_pair.h:59:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:64,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_17230930_7278.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/move.h:166:5: note: template<cl
|