Author Topic: CB doesn't show member functions  (Read 2701 times)

timertick_t

  • Guest
CB doesn't show member functions
« on: February 01, 2019, 04:10:18 pm »
Hi guys,
I have a freshly installed CB IDE 17.12 for C++ with mingw. When I'm doing this
Code
    string phrase = "0123456789";

    cout << phrase << endl;
    cout << phrase. // with the dot now the methods of the class 'string' for the object 'phrase',
    // e.g. phrase.find() should be visible. But they are not.

I don't see the pull-down menu right next to the cursor to select a method from. Any idea how to solve?