#include <iterator>
#include <initializer_list>
#include <vector>
using namespace std;
int main() {
auto il { 1, 2, 3, 4 };
vector<int> v0(il.begin(), il.end()); // ok.
vector<int> v1(begin(il)…
Created on 12/15/2012 (updated 20 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 774456
|
|
#include <iostream>
#include <exception>
int main() try {
int n = -1;
int* p = new int[n];
std::cout << p << std::endl;
} catch ( std::exception& ex ) {
std::cerr << ex.what() << std::endl;
…
Created on 9/1/2012 (updated 3 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 760793
|
|
#733612 reproduced on VC++11(VS2012RC)
in spite of you said:
"We're happy to say that we've already fixed it for the upcoming VS release."
https://connect.microsoft.com/VisualStudioJapan/feedback/de…
Created on 7/14/2012 (updated 10 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 753707
|
|
|
Resolved
as Other
|
|
#744591 reproduced at Visual Studio 2012 RC
https://connect.microsoft.com/VisualStudio/feedback/details/744591/
Created on 6/29/2012 (updated 23 weeks ago) | 0 validations | 0 workarounds | 4 comments | feedback id: 751830
|
|
|
Closed
as Fixed
|
|
ツール/オプション/テキストエディター/すべての言語/全般/行番号 checkbox を ON にしても 行番号が表示されない。
Created on 6/4/2012 (updated 48 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 746290
|
|
#include <iostream>
#include <future>
using namespace std;
int main() {
int a = 2;
int b = 3;
future<int> f0 = async([=](){ return a*b;}); // ok
future<int> f1 = async([=](int x){ return x*b…
Created on 4/11/2012 (updated 28 weeks ago) | 0 validations | 0 workarounds | 5 comments | feedback id: 736356
|
|
|
Closed
as Fixed
|
|
public ref class Counter {
public:
delegate void OnUpdate(Counter^ counter);
Counter() : value_(0) {}
void incr() { ++value_; handler(this); }
property int count { int get() { return value_; }}
e…
Created on 3/27/2012 (updated 41 weeks ago) | 0 validations | 0 workarounds | 4 comments | feedback id: 733612
|
|
|
Closed
as Fixed
|
|
typedef std::vector<int> container; // [1]
container c;
decltype(c)::iterator it = c.begin(); // [2]
error(C2146,C2065) at [2]
Created on 9/23/2011 (updated 46 weeks ago) | 1 validation | 0 workarounds | 3 comments | feedback id: 690542
|
|
|
Closed
as Deferred
|
|