cpp-auto-include
cpp-auto-include copied to clipboard
`#include <fstream>` deleted automatically
As per https://github.com/syl20bnr/spacemacs/issues/16501#issuecomment-2245560712
Consider this small example.
#include <fstream>
int main() {
std::ifstream file("a.txt");
}
When I try to refactor, the include is automatically deleted.