From 438620db2faadfefcdb69f8593604427c5aeab21 Mon Sep 17 00:00:00 2001 From: lisyarus Date: Mon, 22 Dec 2025 18:34:54 +0300 Subject: [PATCH] Remove unused expression type --- libs/ast/include/pslang/ast/expression.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libs/ast/include/pslang/ast/expression.hpp b/libs/ast/include/pslang/ast/expression.hpp index c5ff990..8500c3f 100644 --- a/libs/ast/include/pslang/ast/expression.hpp +++ b/libs/ast/include/pslang/ast/expression.hpp @@ -28,12 +28,6 @@ namespace pslang::ast ast::location location; }; - struct constructor - { - type_ptr type; - std::vector args; - }; - using expression_impl = std::variant< literal, identifier,