import boost cstdint into default namespace
Can I somehow import the boost/cstdint definitions into the default namespace without importing any other things from the boost namespace (I am trying to compile a source code that relies on having stdint.h but VC 2008 does not have it so I want to use boost/cstdint but without much modifications to the source at question) thank you -- Vlad P author of C++ ORM http://github.com/vladp/CppOrm/tree/master -- http://www.fastmail.fm - Access your email from home and the web
ehm... is this what you are looking for?
using boost::int32_t; // you can now say int32_t simply
On Fri, Sep 25, 2009 at 7:21 AM, V S P
Can I somehow import the boost/cstdint definitions
into the default namespace without importing any other things from the boost namespace
(I am trying to compile a source code that relies on having stdint.h but VC 2008 does not have it so I want to use boost/cstdint but without much modifications to the source at question)
-- Vlad P
participants (2)
-
Roman Shmelev
-
V S P