Big cleanup of rampant using std.
This commit is contained in:
parent
fcd1225370
commit
453c50c563
15 changed files with 49 additions and 40 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue