We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92e9707 commit a77b278Copy full SHA for a77b278
src/lib/cwe-mapper.cc
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (C) 2013-2023 Red Hat, Inc.
3
*
4
* This file is part of csdiff.
5
@@ -26,8 +26,8 @@
26
// /////////////////////////////////////////////////////////////////////////////
27
// implementation of CweMap
28
struct CweMap::Private {
29
- typedef std::map<std::string, int> TNumByEvent;
30
- typedef std::map<std::string, TNumByEvent> TMapByChk;
+ using TNumByEvent = std::map<std::string, int>;
+ using TMapByChk = std::map<std::string, TNumByEvent>;
31
32
TMapByChk mapByChk;
33
ImpliedAttrDigger digger;
0 commit comments