$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Delfin Rojas (drojas_at_[hidden])
Date: 2008-06-18 12:51:52
> Sean Farrow wrote
>
> Hi:
> I need to convert and std::string to an int, should I use Lexical_cast
> or can I just use static_cast?
> Sean.
>
lexical_cast. In general you use static_cast when you want to convert
numeric data types such as ints to floats.
-delfin