Skip to content

Commit 706eb6b

Browse files
committed
clang-tidy: sort includes alphabetically
Found with llvm-include-order Signed-off-by: Rosen Penev <[email protected]>
1 parent 24e6dd7 commit 706eb6b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/patchelf.cc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,27 @@
1616
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/
1818

19-
#include <string>
20-
#include <vector>
21-
#include <set>
22-
#include <map>
2319
#include <algorithm>
20+
#include <limits>
21+
#include <map>
2422
#include <memory>
23+
#include <set>
2524
#include <sstream>
26-
#include <limits>
2725
#include <stdexcept>
26+
#include <string>
27+
#include <vector>
2828

29-
#include <cstdlib>
30-
#include <cstdio>
31-
#include <cstdarg>
3229
#include <cassert>
33-
#include <cstring>
3430
#include <cerrno>
31+
#include <cstdarg>
32+
#include <cstdio>
33+
#include <cstdlib>
34+
#include <cstring>
3535

36-
#include <sys/types.h>
36+
#include <fcntl.h>
3737
#include <sys/stat.h>
38+
#include <sys/types.h>
3839
#include <unistd.h>
39-
#include <fcntl.h>
4040

4141
#include "elf.h"
4242

0 commit comments

Comments
 (0)