Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master' into file
Browse files Browse the repository at this point in the history
Conflicts:
	src/FileManager.cpp
  • Loading branch information
Andersbakken committed Feb 25, 2015
2 parents 632f050 + 5f70420 commit 359fa32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FileManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ void FileManager::onRecurseJobFinished(const Set<Path> &paths)
std::lock_guard<std::mutex> lock(mMutex); // ### is this needed now?

std::shared_ptr<Project> project = mProject.lock();
assert(project);
if (!project)
return;
Files &map = project->files();
map.clear();
mWatcher.clear();
Expand Down

0 comments on commit 359fa32

Please sign in to comment.