Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Bug 72901 - .hpp not in list of file extensions with known content

This patch adds .hpp to the list of file extensions with known content
(bug 72901). .hpp files are now be properly recognized as being text,
instead of binary.

Pat

-- 
The ideas and opinions expressed herein are my own, and do not
necessarily reflect those of my employer.
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/plugin.xml,v
retrieving revision 1.64
diff -u -r1.64 plugin.xml
--- plugin.xml	27 Aug 2004 15:10:21 -0000	1.64
+++ plugin.xml	31 Aug 2004 00:20:04 -0000
@@ -334,6 +334,10 @@
             extension="hh">
       </fileTypes>
       <fileTypes
+            type="text"
+            extension="hpp">
+      </fileTypes>
+      <fileTypes
             type="binary"
             extension="o">
       </fileTypes>

Back to the top