This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new fa12f33  fix include  problem
     new b2f749e  Merge pull request #182 from chufucun/include_type
fa12f33 is described below

commit fa12f33799dc3f22858f9848f5115bdf64fb6e0c
Author: fucun  chu <[email protected]>
AuthorDate: Fri Jan 15 20:17:07 2021 +0800

    fix include  problem
    
    Integrating DataSketches Theta into Apache Impala and  compile error:
    theta_union.hpp:27:10: fatal error: theta_sketch.hpp: No such file or 
directory
     #include <theta_sketch.hpp>
---
 theta/include/theta_union.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/theta/include/theta_union.hpp b/theta/include/theta_union.hpp
index 7fa2095..6cf8ccc 100644
--- a/theta/include/theta_union.hpp
+++ b/theta/include/theta_union.hpp
@@ -24,7 +24,7 @@
 #include <functional>
 #include <climits>
 
-#include <theta_sketch.hpp>
+#include "theta_sketch.hpp"
 
 namespace datasketches {
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to