1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Add an explicit keyword.

llvm-svn: 66595
This commit is contained in:
Dan Gohman 2009-03-10 23:10:46 +00:00
parent 5645b8cdc5
commit 6eec7905d5

View File

@ -35,7 +35,7 @@ protected:
bool Unbuffered;
public:
raw_ostream(bool unbuffered=false) : Unbuffered(unbuffered) {
explicit raw_ostream(bool unbuffered=false) : Unbuffered(unbuffered) {
// Start out ready to flush.
OutBufStart = OutBufEnd = OutBufCur = 0;
}