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

Search:

Type: Posts; User: simps7b2

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    4,962

    Re: STA, MTA conflict warning

    Anybody Home?
  2. Replies
    2
    Views
    932

    Re: STA conflict warning

    Thanks Victor, I reposted there. Mistook Visual C++ for a synonym of managed c++, but I got myself straightened out.
  3. Replies
    1
    Views
    4,962

    STA, MTA conflict warning

    Hello everyone,

    I recently started writing a C++/CLI wrapper for a native c++ library. I'm now getting this compile warning

    "warning LNK4249: directive '/CLRTHREADATTRIBUTE:STA' conflicts with...
  4. Replies
    2
    Views
    932

    STA conflict warning

    Hello everyone,

    I recently started writing a C++/CLI wrapper for a native c++ library. I'm now getting this compile warning

    "warning LNK4249: directive '/CLRTHREADATTRIBUTE:STA' conflicts with...
  5. Re: Error on destruction of boost::shared_ptr

    It looks like I misplaced the location of the error, but its still puzzling. I have a std::auto_ptr to that delim_list class that I declare as a class variable and set during construction. But it is...
  6. Re: Error on destruction of boost::shared_ptr

    Okay,

    When you say corruption you mean something perhaps trying to destruct an object twice? Like perhaps the delim_list destructor of the elements of the vector get called before the shared_ptr...
  7. [RESOLVED] Error on destruction of boost::shared_ptr

    I have an stl vector of boost::shared_ptr's declared like so:
    vector< shared_ptr<delim_list> > row_data;

    delim_list is a custom class encapsulating a vector of strings.

    The container is filled...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured