Zahl in Vector splitten
-
Hallo,
ich habe eine Zahl die aus 1en und 0en besteht und dan z.B. so aussieht:
0010011110111000101111
Nun möchte ich jede Zahl in einen Vector tun also splitten also die erste Zahl gehört dan z.B. zu v[0] die zweite zu v[1] die dritte zu v[2] usw.
Wie mach ich das, hab bei Google z leider nichts brauchbares gefunden.
Würde mich über ein kleines Beispiel freuen.Mfg. Gast123
-
Weiß da keiner, was? Es ist wirklich wichtig!
-
Hab es nun so gelöst:
array<Char>^chars = {'0','1'}; this->textBox1->Text->Split( chars );
Doch wenn ich es jetzt z.B. so ansprechen will:
if (inpout32::vorgabe[0] == 1) { //Rechts //Code }
Kommt folgender Fehler:
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::vector<_Ty,_Alloc> &,const std::vector<_Ty,_Alloc> &)' : could not deduce template argument for 'const std::vector<_Ty,_Alloc> &' from 'int'
1> C:\Programme\Microsoft Visual Studio 8\VC\include\vector(1259) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2676: binary '==' : 'std::vector<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
1> with
1> [
1> _Ty=int
1> ]
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::vector<_Ty,_Alloc> &,const std::vector<_Ty,_Alloc> &)' : could not deduce template argument for 'const std::vector<_Ty,_Alloc> &' from 'int'
1> C:\Programme\Microsoft Visual Studio 8\VC\include\vector(1259) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2676: binary '==' : 'std::vector<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
1> with
1> [
1> _Ty=int
1> ]
1>Robot Controller.cpp
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::vector<_Ty,_Alloc> &,const std::vector<_Ty,_Alloc> &)' : could not deduce template argument for 'const std::vector<_Ty,_Alloc> &' from 'int'
1> C:\Programme\Microsoft Visual Studio 8\VC\include\vector(1259) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(143) : error C2676: binary '==' : 'std::vector<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
1> with
1> [
1> _Ty=int
1> ]
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::vector<_Ty,_Alloc> &,const std::vector<_Ty,_Alloc> &)' : could not deduce template argument for 'const std::vector<_Ty,_Alloc> &' from 'int'
1> C:\Programme\Microsoft Visual Studio 8\VC\include\vector(1259) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\steuerung.h(148) : error C2676: binary '==' : 'std::vector<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
1> with
1> [
1> _Ty=int
1> ]
1>Parkour.cpp
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::vector<_Ty,_Alloc> &,const std::vector<_Ty,_Alloc> &)' : could not deduce template argument for 'const std::vector<_Ty,_Alloc> &' from 'int'
1> C:\Programme\Microsoft Visual Studio 8\VC\include\vector(1259) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(143) : error C2676: binary '==' : 'std::vector<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
1> with
1> [
1> _Ty=int
1> ]
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::vector<_Ty,_Alloc> &,const std::vector<_Ty,_Alloc> &)' : could not deduce template argument for 'const std::vector<_Ty,_Alloc> &' from 'int'
1> C:\Programme\Microsoft Visual Studio 8\VC\include\vector(1259) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::allocator<_Ty> &,const std::allocator<_Other> &) throw()' : could not deduce template argument for 'const std::allocator<_Ty> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xmemory(174) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &,const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &)' : could not deduce template argument for 'const std::istream_iterator<_Ty,_Elem,_Traits,_Diff> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\iterator(266) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::istreambuf_iterator<_Elem,_Traits> &,const std::istreambuf_iterator<_Elem,_Traits> &)' : could not deduce template argument for 'const std::istreambuf_iterator<_Elem,_Traits> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(2143) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\xutility(1826) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2784: 'bool std::operator ==(const std::pair<_Ty1,_Ty2> &,const std::pair<_Ty1,_Ty2> &)' : could not deduce template argument for 'const std::pair<_Ty1,_Ty2> &' from 'std::vector<_Ty>'
1> with
1> [
1> _Ty=int
1> ]
1> C:\Programme\Microsoft Visual Studio 8\VC\include\utility(60) : see declaration of 'std::operator =='
1>c:\dokumente und einstellungen\bnightspeeder\eigene dateien\visual studio 2005\projects\robot controller\robot controller\Steuerung.h(148) : error C2676: binary '==' : 'std::vector<_Ty>' does not define this operator or a conversion to a type acceptable to the predefined operator
1> with
1> [
1> _Ty=int
1> ]
-
Hab genau das selbe Problem, und brauche unbediengt bis morgen hilfe, bitte!
-
Du bringst hier STL und .NET durcheinander... bleibe entweder beim einen oder anderen!
-
Ich möchte bei .NET bleiben, aber ich habe leider keine Ahnung was hier falsch ist.
Was muss ich den ändern damit es zu .Net passt?
-
Deine beiden von Dir zitierten Codeteile haben nichts miteinander zu tun! Deshalb ist es sehr schwer Dir zu helfen!
Was hat "array<Char>^chars" mit "if (inpout32::vorgabe[0] == 1)" zu tun?
-
Die chars sind die nach denen ich Splite
und vorgabe ist der vector.