summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2019-01-15 13:20:05 -0800
committerGitHub <noreply@github.com>2019-01-15 13:20:05 -0800
commitd24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead (patch)
tree37575895001e5dd9509c5c42fd539253516e21fd /src/tools
parent45714b5fc6cf14c112bc4f188aca427464ab69d8 (diff)
downloadbinaryen-d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead.tar.gz
binaryen-d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead.tar.bz2
binaryen-d24427dcc8cd6e0dbcd8c302eb2e8a5d0d6fdead.zip
Code style improvements (#1868)
* Use modern T p = v; notation to initialize class fields * Use modern X() = default; notation for empty class constructors
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/wasm-metadce.cpp2
-rw-r--r--src/tools/wasm-reduce.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/wasm-metadce.cpp b/src/tools/wasm-metadce.cpp
index 5caf8fea7..f06c41882 100644
--- a/src/tools/wasm-metadce.cpp
+++ b/src/tools/wasm-metadce.cpp
@@ -42,7 +42,7 @@ using namespace wasm;
struct DCENode {
Name name;
std::vector<Name> reaches; // the other nodes this one can reach
- DCENode() {}
+ DCENode() = default;
DCENode(Name name) : name(name) {}
};
diff --git a/src/tools/wasm-reduce.cpp b/src/tools/wasm-reduce.cpp
index 02174bb8a..8b12c0ef1 100644
--- a/src/tools/wasm-reduce.cpp
+++ b/src/tools/wasm-reduce.cpp
@@ -79,7 +79,7 @@ struct ProgramResult {
std::string output;
double time;
- ProgramResult() {}
+ ProgramResult() = default;
ProgramResult(std::string command) {
getFromExecution(command);
}