[Lldb-commits] [lldb] r243483 - Cleanup a few stale comments in FormattersContainer.h
Enrico Granata
egranata at apple.com
Tue Jul 28 14:28:33 PDT 2015
Author: enrico
Date: Tue Jul 28 16:28:33 2015
New Revision: 243483
URL: http://llvm.org/viewvc/llvm-project?rev=243483&view=rev
Log:
Cleanup a few stale comments in FormattersContainer.h
Modified:
lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h
Modified: lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h?rev=243483&r1=243482&r2=243483&view=diff
==============================================================================
--- lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h (original)
+++ lldb/trunk/include/lldb/DataFormatters/FormattersContainer.h Tue Jul 28 16:28:33 2015
@@ -43,10 +43,6 @@
namespace lldb_private {
-// this file (and its. cpp) contain the low-level implementation of LLDB Data Visualization
-// class DataVisualization is the high-level front-end of this feature
-// clients should refer to that class as the entry-point into the data formatters
-// unless they have a good reason to bypass it and prefer to use this file's objects directly
class IFormatChangeListener
{
public:
@@ -447,7 +443,6 @@ protected:
{
for (const FormattersMatchCandidate& candidate : candidates)
{
- // FIXME: could we do the IsMatch() check first?
if (Get(candidate.GetTypeName(),entry))
{
if (candidate.IsMatch(entry) == false)
More information about the lldb-commits
mailing list