Search:

Type: Posts; User: SilentStrike

Search: Search took 0.02 seconds.

  1. Replies
    21
    Views
    5,621

    Coding in a style that fits all langauges...

    Coding in a style that fits all langauges prevents you from exploiting the advantages of any.
  2. Replies
    21
    Views
    5,621

    Any code that doesn't call constructor at the...

    Any code that doesn't call constructor at the top of the block can either be

    a) rewriten with pointers and dynamic allocation as with nv's example (slow, leak prone even)
    b) rewritten so that...
  3. Replies
    21
    Views
    5,621

    Here is a code snippet of mine where I didn't put...

    Here is a code snippet of mine where I didn't put variable declaration at the top of the scope.


    std::string identifier = Util::getNextIdentifier(input);

    Util::makeLowercase(identifier);...
Results 1 to 3 of 3