1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[Option] Remove an unnecessary conversion function.

llvm-svn: 331585
This commit is contained in:
Fangrui Song 2018-05-05 06:05:31 +00:00
parent ca43295447
commit 2dcff3db03

View File

@ -85,9 +85,6 @@ public:
SkipToNextArg();
}
// FIXME: This conversion function makes no sense.
operator const Arg*() { return *Current; }
reference operator*() const { return *Current; }
pointer operator->() const { return Current; }