Add an explicit keyword.

llvm-svn: 66595
This commit is contained in:
Dan Gohman 2009-03-10 23:10:46 +00:00
parent cc51b03a4e
commit dab7b9355f
1 changed files with 1 additions and 1 deletions

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;
}