Skip to content

Files

Latest commit

 

History

History
16 lines (7 loc) · 531 Bytes

build-include.md

File metadata and controls

16 lines (7 loc) · 531 Bytes

Pattern: Malformed include

Issue: -

Description

All of a project's header files should be listed as descendants of the project's source directory without use of UNIX directory shortcuts . (the current directory) or .. (the parent directory). For example, google-awesome-project/src/base/logging.h should be included as:

#include "base/logging.h"

Further Reading