mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Add explicit keywords.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76073 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
688ed8583e
commit
2a993f2cc4
@ -365,7 +365,7 @@ class raw_string_ostream : public raw_ostream {
|
||||
/// counting the bytes currently in the buffer.
|
||||
virtual uint64_t current_pos() { return OS.size(); }
|
||||
public:
|
||||
raw_string_ostream(std::string &O) : OS(O) {}
|
||||
explicit raw_string_ostream(std::string &O) : OS(O) {}
|
||||
~raw_string_ostream();
|
||||
|
||||
/// tell - Return the current offset with the stream.
|
||||
@ -392,7 +392,7 @@ class raw_svector_ostream : public raw_ostream {
|
||||
/// counting the bytes currently in the buffer.
|
||||
virtual uint64_t current_pos();
|
||||
public:
|
||||
raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
|
||||
explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
|
||||
~raw_svector_ostream();
|
||||
|
||||
/// tell - Return the current offset with the stream.
|
||||
|
Loading…
x
Reference in New Issue
Block a user