Jensa

Forum Replies Created

Viewing 2 posts - 46 through 47 (of 47 total)
  • Author
    Posts
  • in reply to: Renaming variable and comment mousover help #21196
    Jensa
    Participant
    #include <iostream>
    
    using namespace std;
    
    class Test
    {
      void foo() { boolean = true; }
    
      // True or false
      bool boolean;
    };
    
    static void
    foo_function( int var_with_underscore )
    {
      var_with_underscore++;
    }
    
    int main( int argc_test, char * argv[] )
    {
      foo_function( 0 );
    
      char sz[] = "Hello, World!"; //Hover mouse over "sz" while debugging to see its contents
      cout << sz << endl; //<================= Put a breakpoint here
      return 0;
    }
    
    in reply to: Automatic code formatting #21191
    Jensa
    Participant

    Hi,

     

    Thanks, that works a bit more consistently indeed and it supports most things that we want from it.

    I guess now I just gotta pester the CLANG team to implement the last few strange things our coding standards want 🙂

     

    Regards

    Jens Nilsson

Viewing 2 posts - 46 through 47 (of 47 total)