aboutsummaryrefslogtreecommitdiff
path: root/articles
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-08-31 17:02:16 +0200
committerAdrian Kummerlaender2016-08-31 17:02:16 +0200
commit902387ef8664ab94ed90e38a5cbef85d5a6e96f9 (patch)
tree5a40ee0c69f9e61bb063997fb15f95ac0f166a60 /articles
parent987f60629433a33e3aff88d65269e80f0ec61c3f (diff)
downloadblog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.tar
blog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.tar.gz
blog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.tar.bz2
blog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.tar.lz
blog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.tar.xz
blog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.tar.zst
blog_content-902387ef8664ab94ed90e38a5cbef85d5a6e96f9.zip
Typo fix
Diffstat (limited to 'articles')
-rw-r--r--articles/2016-02-21_notes_on_function_interposition_in_cpp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/articles/2016-02-21_notes_on_function_interposition_in_cpp.md b/articles/2016-02-21_notes_on_function_interposition_in_cpp.md
index 8a0bd12..27fb967 100644
--- a/articles/2016-02-21_notes_on_function_interposition_in_cpp.md
+++ b/articles/2016-02-21_notes_on_function_interposition_in_cpp.md
@@ -1,6 +1,6 @@
# Notes on function interposition in C++
-To counterbalance the fastly increased amount of time I am spending on purely theoretical topics since I started studying mathematics, my most recent leisure time project was to familiarize myself with function interposition in C++ on Linux. This article will document some of the ins and outs of using this technique in an actual project in addition to describing how the acquisition of the interposed function's pointer may be reasonably abstracted by a function template.
+To counterbalance the vastly increased amount of time I am spending on purely theoretical topics since I started studying mathematics, my most recent leisure time project was to familiarize myself with function interposition in C++ on Linux. This article will document some of the ins and outs of using this technique in an actual project in addition to describing how the acquisition of the interposed function's pointer may be reasonably abstracted by a function template.
## Basics