Skip to content

Commit 1fb6f98

Browse files
committed
Add formatting to the last two commits.
1 parent cd01570 commit 1fb6f98

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

source/loaders/cs_loader/include/cs_loader/netcore_linux.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class netcore_linux : public netcore
8686

8787
std::string tpaList;
8888

89-
dynlink libHandle;
89+
dynlink libHandle;
9090

9191
bool ConfigAssemblyName();
9292

source/loaders/cs_loader/source/netcore_linux.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@ netcore_linux::netcore_linux(char *dotnet_root, char *dotnet_loader_assembly_pat
5656
netcore_linux::~netcore_linux()
5757
{
5858
this->stop();
59-
60-
if(this->libHandle){
59+
60+
if (this->libHandle)
61+
{
6162
dynlink_unload(this->libHandle);
6263
}
6364
}

source/loaders/jl_loader/source/jl_loader_impl.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ int jl_loader_impl_register_types(loader_impl impl)
153153
} type_id_name_pair[] = {
154154
// TODO: Boolean
155155
// TODO: Char
156-
// TODO: We don't support unsigned / signed differenciation (yet?)
156+
// TODO: We don't support unsigned / signed differenciation (yet?)
157157
{ TYPE_CHAR, "Int8" },
158158
{ TYPE_CHAR, "UInt8" },
159159
{ TYPE_SHORT, "Int16" },
@@ -162,12 +162,11 @@ int jl_loader_impl_register_types(loader_impl impl)
162162
{ TYPE_INT, "UInt32" },
163163
{ TYPE_LONG, "Int64" },
164164
{ TYPE_LONG, "UInt64" },
165-
// TODO: We don't support 128 bits types (yet?)
165+
// TODO: We don't support 128 bits types (yet?)
166166
// { TYPE_LONG_LONG, "Int128" },
167167
// { TYPE_LONG_LONG, "UInt128" },
168168
// TODO: We don't support 16 bits floating point (yet?)
169-
{ TYPE_FLOAT, "Float32" }
170-
{ TYPE_DOUBLE, "Float64" }
169+
{ TYPE_FLOAT, "Float32" } { TYPE_DOUBLE, "Float64" }
171170
// TODO: String
172171

173172
};

0 commit comments

Comments
 (0)