summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2013-06-23 19:45:37 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2013-06-23 19:45:37 +0000
commitb70b0336a827e9db4c091a321b32add41dc22941 (patch)
tree8a37dd64b37a95fa79e6aec98e27ee6a1262c92b /src
parentTranslations. Ukrainian translation update by Yuri Chornoivan. (diff)
downloadinkscape-b70b0336a827e9db4c091a321b32add41dc22941.tar.gz
inkscape-b70b0336a827e9db4c091a321b32add41dc22941.zip
Remove unused file memeq.h
(bzr r12385)
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt1
-rw-r--r--src/Makefile_insert1
-rw-r--r--src/doxygen-main.cpp2
-rw-r--r--src/memeq.h25
4 files changed, 1 insertions, 28 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a8925e24f..49f32fdea 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -407,7 +407,6 @@ set(inkscape_SRC
marker.h
measure-context.h
media.h
- memeq.h
menus-skeleton.h
mesh-context.h
message-context.h
diff --git a/src/Makefile_insert b/src/Makefile_insert
index c6955c92a..87b2545c8 100644
--- a/src/Makefile_insert
+++ b/src/Makefile_insert
@@ -99,7 +99,6 @@ ink_common_sources += \
main-cmdlineact.cpp main-cmdlineact.h \
marker.cpp marker.h \
media.cpp media.h \
- memeq.h \
menus-skeleton.h \
mesh-context.cpp mesh-context.h \
message-context.cpp message-context.h \
diff --git a/src/doxygen-main.cpp b/src/doxygen-main.cpp
index 71cd49dae..04e5ab33e 100644
--- a/src/doxygen-main.cpp
+++ b/src/doxygen-main.cpp
@@ -303,7 +303,7 @@ namespace XML {}
* SPGuide [\ref sp-guide.cpp, \ref sp-guide.h, \ref satisfied-guide-cns.cpp, \ref sp-guide-attachment.h, \ref sp-guide-constraint.h]
*
* [\ref help.cpp] [\ref inkscape.cpp] [\ref inkscape-stock.cpp]
- * [\ref interface.cpp, \ref memeq.h] [\ref main.cpp, \ref winmain.cpp]
+ * [\ref interface.cpp] [\ref main.cpp, \ref winmain.cpp]
* [\ref menus-skeleton.h, \ref preferences-skeleton.h]
* [\ref select-toolbar.cpp] [\ref shortcuts.cpp]
* [\ref sp-cursor.cpp] [\ref text-edit.cpp] [\ref toolbox.cpp]
diff --git a/src/memeq.h b/src/memeq.h
deleted file mode 100644
index ebccc3c9e..000000000
--- a/src/memeq.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef INKSCAPE_MEMEQ_H
-#define INKSCAPE_MEMEQ_H
-
-#include <cstring>
-
-/** Convenience/readability wrapper for memcmp(a,b,n)==0. */
-inline bool
-memeq(void const *a, void const *b, size_t n)
-{
- return std::memcmp(a, b, n) == 0;
-}
-
-
-#endif /* !INKSCAPE_MEMEQ_H */
-
-/*
- Local Variables:
- mode:c++
- c-file-style:"stroustrup"
- c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
- indent-tabs-mode:nil
- fill-column:99
- End:
-*/
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :