I am writing a header-only library, using only .hpp and .ipp files. And I have to #include some standard libraries sometimes.
But it becomes costly for the IDEs to parse everything and show the user for suggestions. I do not want to split my definitions and implementations, because I am trying to write a header-only library.
I could not come to a wise solution to overcome this issue. Is there a practical method to follow for such situations?
Thanks in advance.