about summary refs log tree commit diff
path: root/instrumentation/split-switches-pass.so.cc
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2021-05-06 14:59:29 +0100
committerGitHub <noreply@github.com>2021-05-06 15:59:29 +0200
commitc3b19f5bf84effa67dd8a2ce440124cbe60221df (patch)
tree4513f61479972c56de7eff6de82c1466ffeb91a1 /instrumentation/split-switches-pass.so.cc
parent6dc82e620b744b61ce4ad6d783f59b9c9db2827a (diff)
downloadafl++-c3b19f5bf84effa67dd8a2ce440124cbe60221df.tar.gz
instrumentation further move to C++11 (#900)
Diffstat (limited to 'instrumentation/split-switches-pass.so.cc')
-rw-r--r--instrumentation/split-switches-pass.so.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/split-switches-pass.so.cc b/instrumentation/split-switches-pass.so.cc
index 97ab04a4..82f198aa 100644
--- a/instrumentation/split-switches-pass.so.cc
+++ b/instrumentation/split-switches-pass.so.cc
@@ -89,7 +89,7 @@ class SplitSwitchesTransform : public ModulePass {
 
   };
 
-  typedef std::vector<CaseExpr> CaseVector;
+  using CaseVector = std::vector<CaseExpr>;
 
  private:
   bool        splitSwitches(Module &M);