Fix a typo (missing "n")

This commit is contained in:
Andy Balaam 2014-08-22 15:18:33 +01:00
parent 4f4b44e3a2
commit 389f3f5be8
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ Exactly one source file must ```#define``` either ```CATCH_CONFIG_MAIN``` or ```
## Long answer
Usually C++ code is split between a header file, containing declarations and prototypes, and an implementation file (.cpp) containig the definition, or implementation, code. Each implementation file, along with all the headers that it includes (and which those headers include, etc), is expanded into a single entity called a translation unit - which is then passed to the compiler and compiled down to an object file.
Usually C++ code is split between a header file, containing declarations and prototypes, and an implementation file (.cpp) containing the definition, or implementation, code. Each implementation file, along with all the headers that it includes (and which those headers include, etc), is expanded into a single entity called a translation unit - which is then passed to the compiler and compiled down to an object file.
But functions and methods can also be written inline in header files. The downside to this is that these definitions will then be compiled in *every* translation unit that includes the header.
@ -19,4 +19,4 @@ As a result the main source file *does* compile the whole of Catch every time! S
---
[Home](../README.md)
[Home](../README.md)