[mlpack-git] master: Try to fix AppVeyor build. (3a62331)

gitdub at mlpack.org gitdub at mlpack.org
Wed Jun 29 09:25:02 EDT 2016


Repository : https://github.com/mlpack/mlpack
On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/eea2aa43b9b914b4d64f45bdf1f5358faefe2522...809ed4bf33cef9de8412fc167cb0e356a369e3b6

>---------------------------------------------------------------

commit 3a623312ca39783132161487a7e87d05eb3fab6a
Author: Mikhail Lozhnikov <lozhnikovma at gmail.com>
Date:   Wed Jun 29 16:25:02 2016 +0300

    Try to fix AppVeyor build.


>---------------------------------------------------------------

3a623312ca39783132161487a7e87d05eb3fab6a
 src/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp b/src/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp
index 90ac546..9590aa5 100644
--- a/src/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp
+++ b/src/mlpack/core/tree/rectangle_tree/rectangle_tree.hpp
@@ -56,7 +56,8 @@ class RectangleTree
   typedef MatType Mat;
   //! The element type held by the matrix type.
   typedef typename MatType::elem_type ElemType;
-
+  //! The auxiliary information type held by the tree.
+  typedef AuxiliaryInformationType<RectangleTree> AuxiliaryInformation;
  private:
   //! The max number of child nodes a non-leaf node can have.
   size_t maxNumChildren;
@@ -515,7 +516,7 @@ class RectangleTree
   friend SplitType;
 
   //! Give friend access for AuxiliaryInformationType.
-  friend class AuxiliaryInformationType<RectangleTree>;
+  friend AuxiliaryInformation;
 
  public:
   /**




More information about the mlpack-git mailing list