Commit 0d970e47 authored by Davis King's avatar Davis King

Fixed bug in one of the new mat() functions.

parent d7df21a8
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
#define DLIB_MATRIx_MAT_H__ #define DLIB_MATRIx_MAT_H__
#include "matrix_mat_abstract.h" #include "matrix_mat_abstract.h"
#include "matrix.h"
#include "../stl_checked.h" #include "../stl_checked.h"
#include <vector> #include <vector>
#include "matrix_op.h" #include "matrix_op.h"
...@@ -144,7 +143,7 @@ namespace dlib ...@@ -144,7 +143,7 @@ namespace dlib
typename value_type, typename value_type,
typename alloc typename alloc
> >
const matrix_op<op_std_vect_to_mat<std::vector<value_type,alloc> > > mat ( const matrix_op<op_std_vect_to_mat<std_vector_c<value_type,alloc> > > mat (
const std_vector_c<value_type,alloc>& vector const std_vector_c<value_type,alloc>& vector
) )
{ {
......
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