Change get_::m_path type

get cannot take a schema path.

Change-Id: Ifea67eaacfc4864fd05d3a16dd1f9aa4c1cb1b80
diff --git a/src/ast_commands.hpp b/src/ast_commands.hpp
index 9c56d4f..4235af5 100644
--- a/src/ast_commands.hpp
+++ b/src/ast_commands.hpp
@@ -142,7 +142,7 @@
         /> get
         /> get /module:path)";
     bool operator==(const get_& b) const;
-    boost::optional<boost::variant<dataPath_, schemaPath_, module_>> m_path;
+    boost::optional<boost::variant<dataPath_, module_>> m_path;
 };
 
 struct describe_ : x3::position_tagged {