From 2c545daf7600addd49e6192e267fe1977f44db80 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 9 Dec 2023 08:58:30 -0500 Subject: [PATCH] Adjust `README.md` --- tools/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/README.md b/tools/README.md index 91f61d8b..661df560 100644 --- a/tools/README.md +++ b/tools/README.md @@ -12,7 +12,7 @@ We are continually working on extending the capabilities of our "decompilation l All non-inlined functions in the code base with the exception of [3rd party code](/3rdparty) must be annotated with one of the following markers, which include the module name and address of the function as found in the original binaries. This information is then used to compare the recompiled assembly with the original assembly, resulting in an accuracy score. Functions in a given compilation unit must be ordered by their address in ascending order. -The annotations can be attached to the function implementation, which is the most common case, or use the "comment" syntax (see examples below) for functions that cannot be referred to directly (such as templated, synthetic or non-inlined inline functions). They should appear exclusively in `.cpp` files. +The annotations can be attached to the function implementation, which is the most common case, or use the "comment" syntax (see examples below) for functions that cannot be referred to directly (such as templated, synthetic or non-inlined inline functions). The latter should only ever appear in `.h` files. ### `FUNCTION`