CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8

Threaded View

  1. #3
    Join Date
    Apr 1999
    Posts
    27,449

    Re: [boost/thread.hpp] Boost Library 1.51.0 Error in Visual Studio 2010

    Quote Originally Posted by Momentum View Post
    If I remove libpqxx library references in VS project properties, then boost works correctly. If I include it, then the above error in my original post occurs
    The /showIncludes option when compiling your program will show you where the errors are occurring.

    Also, you're using the term "library" incorrectly as those errors are compiler errors, not linker errors. A library is something that is used at link time, not compile time.

    Regards,

    Paul McKenzie
    Last edited by Paul McKenzie; September 16th, 2012 at 06:56 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured