aboutsummaryrefslogtreecommitdiff
path: root/stg.cc
diff options
context:
space:
mode:
authorGiuliano Procida <gprocida@google.com>2023-01-06 15:02:26 +0000
committerMatthias Maennich <maennich@google.com>2023-01-06 16:54:37 +0000
commit34b2ce5af6603118284a191c8420db5d81bb5320 (patch)
tree8f192ea2c63896ac07776792c08f2360bb10a0d8 /stg.cc
parent5343b91f8e6f9b504f176215e14c4a305cea4ff0 (diff)
downloadstg-34b2ce5af6603118284a191c8420db5d81bb5320.tar.gz
sort #include directives
PiperOrigin-RevId: 500167873 Change-Id: I8d280a2d077db66ab6c140ef77a86969b9861c06
Diffstat (limited to 'stg.cc')
-rw-r--r--stg.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/stg.cc b/stg.cc
index f8d6e2b..2365425 100644
--- a/stg.cc
+++ b/stg.cc
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// -*- mode: C++ -*-
//
-// Copyright 2022 Google LLC
+// Copyright 2022-2023 Google LLC
//
// Licensed under the Apache License v2.0 with LLVM Exceptions (the
// "License"); you may not use this file except in compliance with the
@@ -22,17 +22,17 @@
#include <cstring>
#include <fstream>
#include <iostream>
+#include <map>
#include <ostream>
#include <string>
-#include <map>
#include <vector>
#include "abigail_reader.h"
#include "btf_reader.h"
#include "deduplication.h"
#include "elf_reader.h"
-#include "fingerprint.h"
#include "error.h"
+#include "fingerprint.h"
#include "graph.h"
#include "metrics.h"
#include "proto_reader.h"