summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-02-21 08:31:18 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-02-21 08:31:18 +0000
commit0523f41841d0860b2e175a4b20d1ecefd7295c4a (patch)
tree75f51a1badfb7f2e3dd1ecc317f3c45ca7affa24 /include
parent7d9b20792bfc528647f8bd7644934b228cc6c60b (diff)
downloadllvm-0523f41841d0860b2e175a4b20d1ecefd7295c4a.tar.gz
llvm-0523f41841d0860b2e175a4b20d1ecefd7295c4a.tar.bz2
llvm-0523f41841d0860b2e175a4b20d1ecefd7295c4a.tar.xz
Clean up comments that I missed when changing the triple representation.
Somehow, I even missed the ones I wrote just the other day... Thanks to Matt for the code review. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151045 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/Triple.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/ADT/Triple.h b/include/llvm/ADT/Triple.h
index 1266da96a1..272ede1738 100644
--- a/include/llvm/ADT/Triple.h
+++ b/include/llvm/ADT/Triple.h
@@ -132,7 +132,8 @@ public:
/// @name Constructors
/// @{
- /// \brief Default constructor produces an empty, invalid triple.
+ /// \brief Default constructor is the same as an empty string and leaves all
+ /// triple fields unknown.
Triple() : Data(), Arch(), Vendor(), OS(), Environment() {}
explicit Triple(const Twine &Str);