You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until recently, Eclipse CDT did a fairly good job of organizing imports (Ctrl+shift+O) and Add Include (Ctrl+shift+N). It would find undefined labels, search for matching headers, and insert them after the other #include files. But recently, it's started mangling my file header comments in the process. Example:
/
*=============================================================================
Copyright(c) 2024, All Rights Reserved.
Company Name
==============================================================================*/
#pragma once
/**************************** Include Files **************************/
gets mangled to:
#include <tasks/Recorder/recorder.hpp>
Copyright(c) 2024, All Rights Reserved.
Company Name
==============================================================================*/
#pragma once
/**************************** Include Files **************************/
Note the top line of the header block comment is replaced with the include.
Any ideas why this has started? Was it the update from 2024-03 to 2024-06? Is there a way to fix this? Not seeing anything pertinent in the preferences, nor on Google Search.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Until recently, Eclipse CDT did a fairly good job of organizing imports (Ctrl+shift+O) and Add Include (Ctrl+shift+N). It would find undefined labels, search for matching headers, and insert them after the other #include files. But recently, it's started mangling my file header comments in the process. Example:
gets mangled to:
Note the top line of the header block comment is replaced with the include.
Any ideas why this has started? Was it the update from 2024-03 to 2024-06? Is there a way to fix this? Not seeing anything pertinent in the preferences, nor on Google Search.
Beta Was this translation helpful? Give feedback.
All reactions