User forums > Announcements

Release 15.12, RC1 has arrived

<< < (4/17) > >>

ollydbg:

--- Quote from: MortenMacFly on December 10, 2015, 09:21:02 am ---
--- Quote from: ollydbg on December 10, 2015, 02:27:52 am ---This is the patch to fix such issue:

--- End quote ---
That looks very good - its working for me again now.

Great work! I'll some some more testing on larger projects but so far I see no negative side-effects. If you commit, please also add the source snippet to the test cases.

BTW: The patch applied as-it-is just fine.

--- End quote ---
Grad to see that the patch works OK from your side.
I have committed the fix, as I think we will make a final release in this month. Also a test case is added.

nanyu:
1) add "-std=c++11" option
2) everything ok with:

#include <vector>

int main()
{
          std::vector<int> a1 = {1,2};
          a1.    //<--- cc do everything ok..
}

3) but..
#include <vector>

int main()
{
          std::vector<int> a1  {1,2};
          a1.    //<--- cc did not work.
}

oBFusCATed:
nanyu: What build are you testing with?

MortenMacFly:

--- Quote from: oBFusCATed on December 11, 2015, 09:06:14 pm ---nanyu: What build are you testing with?

--- End quote ---
It really does not work. Its a rather new feature of C++ we didn't account for in the parser yet.
But I don't think many people actually use it to initialise a vector. It would be rather bad style and hardly "portable".

So for now I would say please file a bug report so it gets not forgotten, but we'll take care after the upcoming release.

oBFusCATed:
Uf, I thought this is the same case as the one ollydbg has just fixed.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version