summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 59124a0)
raw | patch | inline | side by side (parent: 59124a0)
author | jaspervdg <jaspervdg@users.sourceforge.net> | |
Fri, 19 Dec 2008 11:39:17 +0000 (11:39 +0000) | ||
committer | jaspervdg <jaspervdg@users.sourceforge.net> | |
Fri, 19 Dec 2008 11:39:17 +0000 (11:39 +0000) |
src/display/nr-filter-gaussian.cpp | patch | blob | history |
index 5a425e53a73f1c18c47f61c2185f8ee0f0faf529..ce81df8116ef675951bb6f0655c5b2b62ff64d0d 100644 (file)
static size_t const N = 3;
template<typename InIt, typename OutIt, typename Size>
-void copy_n(InIt beg_in, Size N, OutIt beg_out) {
+inline void copy_n(InIt beg_in, Size N, OutIt beg_out) {
std::copy(beg_in, beg_in+N, beg_out);
}