From: Dan Gohman Date: Fri, 20 Aug 2010 16:36:19 +0000 (+0000) Subject: Add an inspirational quote. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=00d1cdeca9d718d2eb51859800cf66a9d5e386ca;p=oota-llvm.git Add an inspirational quote. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111641 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 3f576df8197..72e38e611ba 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -382,6 +382,11 @@ public: /// flag is set at the time when this raw_ostream's destructor is called, /// report_fatal_error is called to report the error. Use clear_error() /// after handling the error to avoid this behavior. + /// + /// "Errors should never pass silently. + /// Unless explicitly silenced." + /// - from The Zen of Python, by Tim Peters + /// void clear_error() { Error = false; }