1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Small const-correctness fix

llvm-svn: 50723
This commit is contained in:
Mikhail Glushenkov 2008-05-06 16:34:39 +00:00
parent de53f4ce11
commit cc7550a68c
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ namespace {
}
}
int llvmcc::Action::Execute() {
int llvmcc::Action::Execute() const {
if (VerboseMode) {
std::cerr << Command_ << " ";
std::for_each(Args_.begin(), Args_.end(), print_string);

View File

@ -28,7 +28,7 @@ namespace llvmcc {
: Command_(C), Args_(A)
{}
int Execute();
int Execute() const;
};
}