Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Korablev Nikita. Lab №1. Option №4. #8

Merged
merged 10 commits into from
Mar 18, 2024
Merged

Korablev Nikita. Lab №1. Option №4. #8

merged 10 commits into from
Mar 18, 2024

Conversation

NikitaKorablev
Copy link

A plugin has been implemented that renames identifiers (variable name, class name, function name).
Example:

class A {
public:
    A() {};
    ~A();
};
void func() {
    A* a = new A;
    A b;
    delete a;
};

Result:

class B {
public:
    B() {};
    ~B();
};
void func() {
    B* a = new B;
    B b;
    delete a;
 };

@m-ly4
Copy link

m-ly4 commented Mar 15, 2024

Could you please align code with a help of clang-format tool?
And also fix warnings printed by https://github.com/NN-complr-tech/llvm-nnsu-2024/actions/runs/8294689254/job/22700181439?pr=8

@aobolensk
Copy link

Please, update the branch to go through updated clang-format check

@NikitaKorablev NikitaKorablev marked this pull request as draft March 15, 2024 19:07
@NikitaKorablev NikitaKorablev marked this pull request as ready for review March 15, 2024 19:32
@aobolensk aobolensk merged commit 8f9a2ad into NN-complr-tech:course-spring-2024 Mar 18, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants