Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
update copyright
  • Loading branch information
eteran committed Jul 31, 2023
1 parent f08f865 commit 7bf3d61
Show file tree
Hide file tree
Showing 339 changed files with 789 additions and 799 deletions.
4 changes: 2 additions & 2 deletions include/API.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
6 changes: 3 additions & 3 deletions include/ArchProcessor.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -36,7 +36,7 @@ class EDB_EXPORT ArchProcessor : public QObject {

public:
ArchProcessor();
ArchProcessor(const ArchProcessor &) = delete;
ArchProcessor(const ArchProcessor &) = delete;
ArchProcessor &operator=(const ArchProcessor &) = delete;
~ArchProcessor() override = default;

Expand Down
12 changes: 6 additions & 6 deletions include/BasicBlock.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -41,12 +41,12 @@ class EDB_EXPORT BasicBlock {
using const_reverse_iterator = std::reverse_iterator<const_iterator>;

public:
BasicBlock() = default;
BasicBlock(const BasicBlock &other) = default;
BasicBlock() = default;
BasicBlock(const BasicBlock &other) = default;
BasicBlock &operator=(const BasicBlock &rhs) = default;
BasicBlock(BasicBlock &&other) = default;
BasicBlock &operator=(BasicBlock &&rhs) = default;
~BasicBlock() = default;
BasicBlock &operator=(BasicBlock &&rhs) = default;
~BasicBlock() = default;

public:
void push_back(const instruction_pointer &inst);
Expand Down
4 changes: 2 additions & 2 deletions include/BinaryString.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
6 changes: 3 additions & 3 deletions include/ByteShiftArray.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
class EDB_EXPORT ByteShiftArray {
public:
explicit ByteShiftArray(int size);
ByteShiftArray(const ByteShiftArray &) = delete;
ByteShiftArray(const ByteShiftArray &) = delete;
ByteShiftArray &operator=(const ByteShiftArray &) = delete;

public:
Expand Down
4 changes: 2 additions & 2 deletions include/Configuration.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/Expression.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/Expression.tcc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
8 changes: 4 additions & 4 deletions include/Function.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -42,8 +42,8 @@ class EDB_EXPORT Function {
using const_reverse_iterator = std::reverse_iterator<const_iterator>;

public:
Function() = default;
Function(const Function &other) = default;
Function() = default;
Function(const Function &other) = default;
Function &operator=(const Function &rhs) = default;

public:
Expand Down
6 changes: 3 additions & 3 deletions include/GraphEdge.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2015 - 2015 Evan Teran
[email protected]
Copyright (C) 2015 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -31,7 +31,7 @@ class GraphicsLineItem;
class GraphEdge final : public QGraphicsItemGroup {
public:
GraphEdge(GraphNode *from, GraphNode *to, const QColor &color = Qt::black, QGraphicsItem *parent = nullptr);
GraphEdge(const GraphEdge &) = delete;
GraphEdge(const GraphEdge &) = delete;
GraphEdge &operator=(const GraphEdge &) = delete;
~GraphEdge() override;

Expand Down
6 changes: 3 additions & 3 deletions include/GraphNode.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2015 - 2015 Evan Teran
[email protected]
Copyright (C) 2015 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -42,7 +42,7 @@ class GraphNode final : public QGraphicsItem {

public:
GraphNode(GraphWidget *graph, const QString &text, const QColor &color = Qt::white);
GraphNode(const GraphNode &) = delete;
GraphNode(const GraphNode &) = delete;
GraphNode &operator=(const GraphNode &) = delete;
~GraphNode() override;

Expand Down
6 changes: 3 additions & 3 deletions include/GraphWidget.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2015 - 2015 Evan Teran
[email protected]
Copyright (C) 2015 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -37,7 +37,7 @@ class GraphWidget final : public QGraphicsView {

public:
GraphWidget(QWidget *parent = nullptr);
GraphWidget(const GraphWidget &) = delete;
GraphWidget(const GraphWidget &) = delete;
GraphWidget &operator=(const GraphWidget &) = delete;
~GraphWidget() override;

Expand Down
4 changes: 2 additions & 2 deletions include/HexStringValidator.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2013 - 2015 Evan Teran
[email protected]
Copyright (C) 2013 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IAnalyzer.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IBinary.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IBreakpoint.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IDebugEvent.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IDebugEventHandler.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IDebugger.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IPlugin.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IProcess.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IRegion.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
6 changes: 3 additions & 3 deletions include/IState.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -19,9 +19,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef ISTATE_H_20110315_
#define ISTATE_H_20110315_

#include <memory>
#include "Register.h"
#include "Types.h"
#include <memory>

// TODO(eteran): This file is still too taylored to x86 and family
// we should develop a better abstraction model at some point
Expand Down
4 changes: 2 additions & 2 deletions include/ISymbolGenerator.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/ISymbolManager.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/IThread.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2015 - 2015 Evan Teran
[email protected]
Copyright (C) 2015 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/Instruction.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/MemoryRegions.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/Module.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/Patch.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2017 - 2017 Evan Teran
[email protected]
Copyright (C) 2017 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/Prototype.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/QLongValidator.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions include/QULongValidator.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
6 changes: 3 additions & 3 deletions include/Register.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Copyright (C) 2006 - 2015 Evan Teran
[email protected]
Copyright (C) 2006 - 2023 Evan Teran
[email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -48,7 +48,7 @@ class EDB_EXPORT Register {

public:
Register();
Register(const Register &other) = default;
Register(const Register &other) = default;
Register &operator=(const Register &rhs) = default;

public:
Expand Down
Loading

0 comments on commit 7bf3d61

Please sign in to comment.