Big cleanup of rampant using std.

This commit is contained in:
Zed A. Shaw 2024-09-07 22:26:57 -04:00
parent fcd1225370
commit 453c50c563
15 changed files with 49 additions and 40 deletions

View file

@ -1,13 +1,14 @@
#include "watcher.hpp"
#include <filesystem>
using namespace std;
using std::string;
namespace fs = std::filesystem;
void UpdateListener::handleFileAction(efsw::WatchID watchid,
const std::string& dir,
const std::string& filename,
const string& dir,
const string& filename,
efsw::Action action,
std::string oldFilename)
string oldFilename)
{
// this is some gnarly BS here, probably tons