Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • caosdb/src/caosdb-octavelib
1 result
Show changes
Commits on Source (3)
...@@ -24,7 +24,7 @@ variables: ...@@ -24,7 +24,7 @@ variables:
# caosdb-cpplib) # caosdb-cpplib)
CPPLIB_REGISTRY_IMAGE: $CI_REGISTRY/caosdb/src/caosdb-cpplib/testenv CPPLIB_REGISTRY_IMAGE: $CI_REGISTRY/caosdb/src/caosdb-cpplib/testenv
OCTAVE_REGISTRY_IMAGE: $CI_REGISTRY_IMAGE/testenv:$CI_COMMIT_REF_NAME OCTAVE_REGISTRY_IMAGE: $CI_REGISTRY_IMAGE/testenv:$CI_COMMIT_REF_NAME
CPPLIB_BRANCH: dev CPPLIB_BRANCH: f-cpp-to-string
OCTAVEINTTEST_PIPELINE: https://gitlab.indiscale.com/api/v4/projects/121/trigger/pipeline OCTAVEINTTEST_PIPELINE: https://gitlab.indiscale.com/api/v4/projects/121/trigger/pipeline
......
...@@ -3,5 +3,6 @@ ...@@ -3,5 +3,6 @@
line_length: 100 line_length: 100
regex_function_name: "[a-z]+(_[a-z]+)*" regex_function_name: "[a-z]+(_[a-z]+)*"
regex_parameter_name: "~|([a-z]+(_[a-z]+)*)"
suppress_rule: "whitespace_comments" suppress_rule: "whitespace_comments"
tab_width: 2 tab_width: 2
...@@ -232,7 +232,7 @@ classdef Entity < handle ...@@ -232,7 +232,7 @@ classdef Entity < handle
end end
% Create the errors, warnings, infos % Create the errors, warnings, infos
function result = create_messages(data, level) function result = create_messages(~, data, level)
result = cell(); result = cell();
if isfield(data, level) if isfield(data, level)
for message = getfield(data, level) for message = getfield(data, level)
......