Reputation: 2781
I need to view source files from a project (C++) that I do not intend to run. Loaded in Eclipse, it has many errors due to missing libraries. Is there a way to tell Eclipse to ignore (or at least not underline in red) those compile errors?
I want to use eclipse to view the code for the syntax highlighting, parentheses matching, etc.
Upvotes: 30
Views: 45446
Reputation: 946
It's possible to tell Eclipse not to underline the text / show it in the vertical or overview ruler by unchecking all checkboxes in Window -> Preferences -> General -> Editors -> Text Editors -> Annotations -> Errors
As you only want to view the code, I'd recommend another editor like Notepad++, Sublime Text or (my personal favourite) vim/gvim. Eclipse is a little bit too 'heavy' for just viewing code.
Upvotes: 41
Reputation: 11576
If you are using the CDT plugin, which you probably are as you're using Eclipse for a C/C++ project:
Window
-> Preferences
-> C/C++
-> Code Analysis
. Upvotes: 10
Reputation: 2781
You can also just remove the C++ files from the source folders included in the build path.
Upvotes: -5