B
Brian
Shalom
When I change this:
File fl(fileName);
outputFiles_.push_back(fl);
to this:
outputFiles_.push_back(File(fileName));
my executable grows 576 bytes. I'm using gcc 4.4.2 with -O2
and am comparing stripped executables. outputFiles_ is a
std::vector<File>. I'd like to know why the change has such a
negative effect on things. Does the punishment fit the crime?
Thanks.
Brian Wood
http://webEbenezer.net
(651) 251-9384
When I change this:
File fl(fileName);
outputFiles_.push_back(fl);
to this:
outputFiles_.push_back(File(fileName));
my executable grows 576 bytes. I'm using gcc 4.4.2 with -O2
and am comparing stripped executables. outputFiles_ is a
std::vector<File>. I'd like to know why the change has such a
negative effect on things. Does the punishment fit the crime?
Thanks.
Brian Wood
http://webEbenezer.net
(651) 251-9384