40 static std::atomic<uint64_t> TempCounter{0};
41 std::string TempPath =
42 Filepath.str() +
".tmp." +
43 std::to_string(TempCounter.fetch_add(1, std::memory_order_relaxed));
46 llvm::raw_fd_ostream Out(TempPath, EC);
52 std::filesystem::rename(TempPath, Filepath.str());