mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Use std::string() instead of std::string("").
llvm-svn: 78364
This commit is contained in:
parent
1c41d60c4a
commit
05d4015881
@ -94,7 +94,7 @@ public:
|
||||
/// @name Constructors
|
||||
/// @{
|
||||
|
||||
Triple() : Data(""), Arch(InvalidArch) {}
|
||||
Triple() : Data(), Arch(InvalidArch) {}
|
||||
explicit Triple(const StringRef &Str) : Data(Str), Arch(InvalidArch) {}
|
||||
explicit Triple(const char *ArchStr, const char *VendorStr, const char *OSStr)
|
||||
: Data(ArchStr), Arch(InvalidArch) {
|
||||
|
Loading…
Reference in New Issue
Block a user