Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
bd165229
Commit
bd165229
authored
Oct 07, 2020
by
Steven Murray
Browse files
Removed redundant typedef from Login::parseString()
parent
9aebb73a
Pipeline
#324
passed with stages
in 14 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rdbms/Login.cpp
View file @
bd165229
...
...
@@ -115,8 +115,7 @@ Login Login::parseString(const std::string &connectionString) {
throw
exception
::
Exception
(
"Invalid connection string: Empty string"
);
}
typedef
Login
::
DbTypeAndConnectionDetails
DbTypeAndConnectionDetails
;
const
DbTypeAndConnectionDetails
typeAndDetails
=
parseDbTypeAndConnectionDetails
(
connectionString
);
const
auto
typeAndDetails
=
parseDbTypeAndConnectionDetails
(
connectionString
);
if
(
typeAndDetails
.
dbTypeStr
==
DbTypeAndConnectionDetails
::
in_memory
)
{
return
parseInMemory
(
typeAndDetails
.
connectionDetails
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment