Code

Makes copy_n inline in nr-filter-gaussian.
authorjaspervdg <jaspervdg@users.sourceforge.net>
Fri, 19 Dec 2008 11:39:17 +0000 (11:39 +0000)
committerjaspervdg <jaspervdg@users.sourceforge.net>
Fri, 19 Dec 2008 11:39:17 +0000 (11:39 +0000)
src/display/nr-filter-gaussian.cpp

index 5a425e53a73f1c18c47f61c2185f8ee0f0faf529..ce81df8116ef675951bb6f0655c5b2b62ff64d0d 100644 (file)
@@ -59,7 +59,7 @@
 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);
 }