aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level2/README-function-args-by-value.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/checks/level2/README-function-args-by-value.md')
-rw-r--r--src/checks/level2/README-function-args-by-value.md10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/checks/level2/README-function-args-by-value.md b/src/checks/level2/README-function-args-by-value.md
deleted file mode 100644
index 1e96e4ae..00000000
--- a/src/checks/level2/README-function-args-by-value.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# function-args-by-value
-
-Warns when you should be passing by value instead of by-ref.
-Types with sizeof <= 16 bytes [1] which are trivially-copyable [2] and trivially-destructible [3] should be passed by value.
-
-Only fix these warnings if you're sure that the value would be passed in a CPU register instead on the stack.
-
-- [1] <http://www.macieira.org/blog/2012/02/the-value-of-passing-by-value/>
-- [2] <http://en.cppreference.com/w/cpp/concept/TriviallyCopyable>
-- [3] <http://www.cplusplus.com/reference/type_traits/is_trivially_destructible/>