Commit 9ef5195c authored by Davis King's avatar Davis King

Minor changes to avoid compiler warnings from clang++

parent a2331a99
......@@ -256,12 +256,12 @@ namespace dlib
template <typename U>
bool aliases (
const matrix_exp<U>& item
const matrix_exp<U>&
) const { return false; }
template <typename U>
bool destructively_aliases (
const matrix_exp<U>& item
const matrix_exp<U>&
) const { return false; }
long nr (
......
......@@ -299,16 +299,16 @@ namespace dlib
typename T
>
void serialize (
const sparse_linear_kernel<T>& item,
std::ostream& out
const sparse_linear_kernel<T>& ,
std::ostream&
){}
template <
typename T
>
void deserialize (
sparse_linear_kernel<T>& item,
std::istream& in
sparse_linear_kernel<T>& ,
std::istream&
){}
// ----------------------------------------------------------------------------------------
......@@ -362,16 +362,16 @@ namespace dlib
typename T
>
void serialize (
const sparse_histogram_intersection_kernel<T>& item,
std::ostream& out
const sparse_histogram_intersection_kernel<T>& ,
std::ostream&
){}
template <
typename T
>
void deserialize (
sparse_histogram_intersection_kernel<T>& item,
std::istream& in
sparse_histogram_intersection_kernel<T>& ,
std::istream&
){}
// ----------------------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment