Repository: celix
Updated Branches:
  refs/heads/feature/CELIX-237_rsa-ffi 24d13f2ef -> f9ed9b33b


CELIX-237: Removed unused function


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/e9954746
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/e9954746
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/e9954746

Branch: refs/heads/feature/CELIX-237_rsa-ffi
Commit: e99547469face64cc3f330d3602efe1869fafc20
Parents: 24d13f2
Author: Pepijn Noltes <pepijnnol...@gmail.com>
Authored: Fri Jul 31 12:59:55 2015 +0200
Committer: Pepijn Noltes <pepijnnol...@gmail.com>
Committed: Fri Jul 31 12:59:55 2015 +0200

----------------------------------------------------------------------
 remote_services/dynamic_function_interface/dyn_type.c | 7 -------
 remote_services/dynamic_function_interface/dyn_type.h | 1 -
 2 files changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/e9954746/remote_services/dynamic_function_interface/dyn_type.c
----------------------------------------------------------------------
diff --git a/remote_services/dynamic_function_interface/dyn_type.c 
b/remote_services/dynamic_function_interface/dyn_type.c
index 6de9736..87ebb5d 100644
--- a/remote_services/dynamic_function_interface/dyn_type.c
+++ b/remote_services/dynamic_function_interface/dyn_type.c
@@ -478,13 +478,6 @@ int dynType_complex_indexForName(dyn_type *type, const 
char *name) {
     return index;
 }
 
-char dynType_complex_descriptorTypeAt(dyn_type *type, int index) {
-    assert(type->type == DYN_TYPE_COMPLEX);
-
-    dyn_type *item = type->complex.types[index];
-    return item->descriptor;
-}
-
 int dynType_complex_dynTypeAt(dyn_type *type, int index, dyn_type **result) {
     assert(type->type == DYN_TYPE_COMPLEX);
     dyn_type *sub = type->complex.types[index];

http://git-wip-us.apache.org/repos/asf/celix/blob/e9954746/remote_services/dynamic_function_interface/dyn_type.h
----------------------------------------------------------------------
diff --git a/remote_services/dynamic_function_interface/dyn_type.h 
b/remote_services/dynamic_function_interface/dyn_type.h
index bf6dfc8..7334da3 100644
--- a/remote_services/dynamic_function_interface/dyn_type.h
+++ b/remote_services/dynamic_function_interface/dyn_type.h
@@ -148,7 +148,6 @@ int dynType_descriptorType(dyn_type *type);
 
 //complexType
 int dynType_complex_indexForName(dyn_type *type, const char *name);
-char dynType_complex_descriptorTypeAt(dyn_type *type, int index);
 int dynType_complex_dynTypeAt(dyn_type *type, int index, dyn_type **subType);
 int dynType_complex_setValueAt(dyn_type *type, int index, void *inst, void 
*in);
 int dynType_complex_valLocAt(dyn_type *type, int index, void *inst, void 
**valLoc);

Reply via email to