Skip to content

Commit

Permalink
Fix missing implementation for 'cowl_obj_prop_exp_get_prop'
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanoBilenchi committed Jul 30, 2024
1 parent 913684c commit cdd81e7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/cowl_obj_prop_exp.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* @author Ivano Bilenchi
*
* @copyright Copyright (c) 2024 SisInf Lab, Polytechnic University of Bari
* @copyright <http://swot.sisinflab.poliba.it>
* @copyright SPDX-License-Identifier: EPL-2.0
*
* @file
*/

#include "cowl_obj_prop_exp.h"
#include "cowl_any.h"
#include "cowl_inv_obj_prop.h"

CowlObjProp *cowl_obj_prop_exp_get_prop(CowlAnyObjPropExp *exp) {
return cowl_obj_prop_exp_is_inverse(exp) ? cowl_inv_obj_prop_get_prop(exp) : exp;
}

0 comments on commit cdd81e7

Please sign in to comment.