Skip to content
This repository was archived by the owner on Feb 24, 2024. It is now read-only.

Clarify behavior in README.md #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Files containing `#pragma once` will be processed only once, so use this directi
files in the output and to reduce its size.

After processing all included files, the program will try to find related source files for each of included local header
files. If a file with the same base name and extension .c or .cpp exists, it will be appended to the output. Program
files that contain a `#pragma once` declaration. If a file with the same base name and extension .c or .cpp exists, it will be appended to the output. Program
will search first in the same directory where the main source file is located and then in an additional source
directory, if it was specified in program arguments (option `-s` or `--source`). If the header was included using
relative path ex. `#include "one/two/three.hpp"` the program will search for `three.c` or `three.cpp` in `one/two/`
Expand Down