summaryrefslogtreecommitdiff
path: root/tools/preproc/asm_file.cpp
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2017-02-03 23:16:28 -0600
committercamthesaxman <cameronghall@cox.net>2017-02-03 23:19:18 -0600
commit7c96b16179792a044ded6ade1b74cdb1c0b870a5 (patch)
treefb04b6228467ef4f78fed680d7dfae1c4a55ad95 /tools/preproc/asm_file.cpp
parent18e21f8b090a49934a80d56b1796e0c1d469a22c (diff)
use std:: prefix and remove some unused functions
Diffstat (limited to 'tools/preproc/asm_file.cpp')
-rw-r--r--tools/preproc/asm_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/preproc/asm_file.cpp b/tools/preproc/asm_file.cpp
index 49c9e3c66..bb296b78b 100644
--- a/tools/preproc/asm_file.cpp
+++ b/tools/preproc/asm_file.cpp
@@ -494,7 +494,7 @@ bool AsmFile::IsAtEnd()
// Output the current location to set gas's logical file and line numbers.
void AsmFile::OutputLocation()
{
- printf("# %ld \"%s\"\n", m_lineNum, m_filename.c_str());
+ std::printf("# %ld \"%s\"\n", m_lineNum, m_filename.c_str());
}
// Reports a diagnostic message.