about summary refs log tree commit diff
path: root/src/libstore/download.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-01-31T21·34+0100
committerEelco Dolstra <edolstra@gmail.com>2018-01-31T21·34+0100
commit88f4f0231b805d4d57ab4c03bd56650fe8b8fd4c (patch)
tree763c856cbd370ea0717778ae7f4369260d0e2531 /src/libstore/download.cc
parentc287d7312103bae5e154c0c4dd493371a22ea207 (diff)
Fix building without aws-sdk-cpp
Diffstat (limited to 'src/libstore/download.cc')
-rw-r--r--src/libstore/download.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libstore/download.cc b/src/libstore/download.cc
index a8bcab2f15..258d7937cc 100644
--- a/src/libstore/download.cc
+++ b/src/libstore/download.cc
@@ -17,12 +17,13 @@
 
 #include <curl/curl.h>
 
-#include <queue>
-#include <iostream>
-#include <thread>
+#include <algorithm>
 #include <cmath>
+#include <cstring>
+#include <iostream>
+#include <queue>
 #include <random>
-#include <algorithm>
+#include <thread>
 
 using namespace std::string_literals;