mirror of
https://github.com/MaskRay/ccls.git
synced 2025-06-10 02:02:12 +00:00
Add missing unordered_map include to working_files.hh
Building 0.20181225 on FreeBSD fails with: src/working_files.hh:89:8: error: no template named 'unordered_map' in namespace 'std' std::unordered_map<std::string, std::unique_ptr<WorkingFile>> files; ~~~~~^ src/working_files.cc:248:8: error: no member named 'unordered_map' in namespace 'std' std::unordered_map<uint64_t, int> hash_to_unique; ~~~~~^ Signed-off-by: Tobias Kortkamp <tobik@FreeBSD.org>
This commit is contained in:
parent
a9397cf614
commit
e99f1b4990
@ -21,6 +21,7 @@ limitations under the License.
|
|||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <unordered_map>
|
||||||
|
|
||||||
namespace ccls {
|
namespace ccls {
|
||||||
struct WorkingFile {
|
struct WorkingFile {
|
||||||
|
Loading…
Reference in New Issue
Block a user