Skip to content

Commit

Permalink
Fix partially compilation on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadapc committed Feb 8, 2024
1 parent edd99ad commit 6c015f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/lfilesaver/models/FileEntry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <dirent.h>
#include <spdlog/spdlog.h>
#include <sys/_types/_off_t.h>
#include <memory>
#include <vector>

namespace filesaver
Expand Down
1 change: 1 addition & 0 deletions src/lfilesaver/models/FileEntry.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <boost/filesystem/path.hpp>
#include <fstream>
#include <memory>
#include <sys/stat.h>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions src/lfilesaver/models/FileSizePair.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef FILESAVER_FILESIZEPAIR_H
#define FILESAVER_FILESIZEPAIR_H

#include <memory>
#include <string>

#include "FileEntry.h"
Expand Down
1 change: 1 addition & 0 deletions src/lfilesaver/services/filesize/InMemoryFileEntryStore.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <boost/optional/optional.hpp>
#include <optional>
#include <unordered_map>
#include <memory>

#include "../../models/FileEntry.h"

Expand Down

0 comments on commit 6c015f3

Please sign in to comment.