CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: razzle

Search: Search took 0.04 seconds.

  1. Replies
    6
    Views
    6,425

    Re: Resource leak.. ?

    The best alternative is to use reference counting smart pointers. There's one called std::shared_ptr which is part of the language (since C++ 11).

    It's used like an ordinary pointer but makes...
  2. Replies
    6
    Views
    6,425

    Re: Resource leak.. ?

    A memory leak is a kind of resource leak.
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured