summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-01-24 19:44:01 +0100
committerJulien Nabet <serval2412@yahoo.fr>2020-01-26 11:14:45 +0100
commit91dd3e8d903eb388e709ec45163a375590150773 (patch)
treee9b3083580cadd2aeb34c0e8105e04ef8e35b686 /compilerplugins
parent63d6d68ad377c66fc315d89b4a98ed52c0c9f782 (diff)
Fix typo
Change-Id: Ic0e0553bd836dabb146d31840a4855cf6299c68e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87365 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/test/makeshared.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/test/makeshared.cxx b/compilerplugins/clang/test/makeshared.cxx
index 6e388428f8f1..3bb4702a05d8 100644
--- a/compilerplugins/clang/test/makeshared.cxx
+++ b/compilerplugins/clang/test/makeshared.cxx
@@ -36,7 +36,7 @@ void test1()
std::shared_ptr<S1> z(new S1);
z.reset(new S1);
- // no warning expected - this constructor takes an initializer-list, which maked_shared does not support
+ // no warning expected - this constructor takes an initializer-list, which make_shared does not support
auto a = std::shared_ptr<o3tl::sorted_vector<int>>(new o3tl::sorted_vector<int>({ 1, 2 }));
};