Author Topic: small bug in the code completion toolbar  (Read 3162 times)

Offline frithjofh

  • Regular
  • ***
  • Posts: 376
small bug in the code completion toolbar
« on: May 10, 2010, 09:28:04 pm »
Hi, everybody,

accidentaly I found a small bug in the code completion toolbar: when a function has a exception specification this function does not appear in the drop down list of the toolbar:

Code
void DoSomething() throw();

a function like the one above does not become listed at all.

Regards

frithjofh
architect with some spare time  -  c::b compiled from last svn  -   openSuSE leap x86_64  -  AMD FX-4100

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: small bug in the code completion toolbar
« Reply #1 on: May 11, 2010, 02:02:38 am »
Ok, this should be a bug in parserthread, the keyword "throw" is not correctly recognized. I will try to fix it  :D.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.