Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
cn5g
oai-cn5g-nrf
Commits
836fd33b
Commit
836fd33b
authored
Jun 15, 2021
by
Tien-Thinh Nguyen
Browse files
Fix cmake warnings
parent
7da2ddcc
Pipeline
#25746
passed with stage
in 0 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/api-server/model/AccessTokenClaims.h
View file @
836fd33b
...
...
@@ -71,6 +71,7 @@ typedef struct audience_s {
// TODO:
}
}
return
*
this
;
// TODO:
}
...
...
src/api-server/model/SubscriptionData.h
View file @
836fd33b
...
...
@@ -86,6 +86,7 @@ typedef struct subscription_condition_api_s {
subscription_condition_api_s
&
operator
=
(
subscription_condition_api_s
&
s
)
{
// TODO:
return
*
this
;
}
friend
void
to_json
(
...
...
src/common/3gpp_29.510.h
View file @
836fd33b
...
...
@@ -191,6 +191,7 @@ typedef struct subscription_condition_s {
// TODO:
}
}
return
*
this
;
// TODO:
}
...
...
@@ -258,6 +259,7 @@ typedef struct nf_service_version_s {
nf_service_version_s
&
operator
=
(
const
nf_service_version_s
&
s
)
{
api_version_in_uri
=
s
.
api_version_in_uri
;
api_full_version
=
s
.
api_full_version
;
return
*
this
;
}
std
::
string
to_string
()
const
{
...
...
src/nrf_app/nrf_jwt.cpp
View file @
836fd33b
...
...
@@ -54,6 +54,7 @@ bool nrf_jwt::generate_signature(
// Get the encoded string/assertion
signature
=
obj
.
signature
();
return
true
;
}
//------------------------------------------------------------------------------
...
...
@@ -75,6 +76,7 @@ bool nrf_jwt::generate_signature(
// Get the encoded string/assertion
signature
=
obj
.
signature
();
return
true
;
}
//------------------------------------------------------------------------------
...
...
@@ -83,6 +85,7 @@ bool nrf_jwt::get_secret_key(
const
std
::
string
&
target_nf_type
,
std
::
string
&
key
)
const
{
// TODO:
key
=
"secret"
;
return
true
;
}
//------------------------------------------------------------------------------
...
...
@@ -91,6 +94,7 @@ bool nrf_jwt::get_secret_key(
std
::
string
&
key
)
const
{
// TODO:
key
=
"secret"
;
return
true
;
}
//------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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