From 4dc65e296973da4997b494000643aad4ab46c40a Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Thu, 29 Jul 2021 14:18:30 +0200 Subject: [PATCH] STY: autoforamtted --- src/Connection.jl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Connection.jl b/src/Connection.jl index 0b58126..dc8a695 100644 --- a/src/Connection.jl +++ b/src/Connection.jl @@ -101,7 +101,10 @@ mutable struct _Configuration # internally by libcaosdb. function f(t) ccall( - (:caosdb_connection_delete_connection_configuration, CaosDB.library_name), + ( + :caosdb_connection_delete_connection_configuration, + CaosDB.library_name, + ), Cint, (Ref{_Configuration},), Ref{_Configuration}(t), @@ -243,7 +246,10 @@ function get_connection(name::AbstractString = "default") if name == "default" err_code = ccall( - (:caosdb_connection_connection_manager_get_default_connection, CaosDB.library_name), + ( + :caosdb_connection_connection_manager_get_default_connection, + CaosDB.library_name, + ), Cint, (Ref{_Connection},), connection, -- GitLab