Skip to content

Commit

Permalink
Rename obfuscator/context -> obfuscator/program
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Dec 29, 2024
1 parent ca702cc commit 1c9a93b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions obfuscator/CMakeLists.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion obfuscator/include/obfuscator/analyze.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <set>
#include <vector>

#include <obfuscator/context.hpp>
#include <obfuscator/program.hpp>

namespace obfuscator
{
Expand Down
2 changes: 1 addition & 1 deletion obfuscator/include/obfuscator/disassemble.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <obfuscator/context.hpp>
#include <obfuscator/program.hpp>

namespace obfuscator
{
Expand Down
2 changes: 1 addition & 1 deletion obfuscator/include/obfuscator/obfuscate.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <obfuscator/context.hpp>
#include <obfuscator/program.hpp>

namespace obfuscator
{
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion obfuscator/src/obfuscate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using namespace zasm;
using namespace obfuscator;

#include <obfuscator/context.hpp>
#include <obfuscator/program.hpp>
#include <obfuscator/disassemble.hpp>
#include <obfuscator/analyze.hpp>
#include <obfuscator/obfuscate.hpp>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <map>

#include <obfuscator/context.hpp>
#include <obfuscator/program.hpp>

#include <zasm/formatter/formatter.hpp>
#include <fmt/format.h>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <gtest/gtest.h>

#include <obfuscator/context.hpp>
#include <obfuscator/program.hpp>

using namespace zasm;
using namespace obfuscator;
Expand Down

0 comments on commit 1c9a93b

Please sign in to comment.