Skip to content

Commit dabd0ee

Browse files
committed
code fix
Signed-off-by: Krzysztof Lecki <[email protected]>
1 parent 445f040 commit dabd0ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/dali/core/source_location.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ class source_location {
6565

6666
private:
6767
DALI_HOST_DEV constexpr source_location(const char *source_file, const char *function_name,
68-
int line_)
69-
: source_file_(source_file), function_name_(function_name), line_(line_) {}
68+
int line)
69+
: source_file_(source_file), function_name_(function_name), line_(line) {}
7070
const char *source_file_ = "";
7171
const char *function_name_ = "";
7272
int line_ = 0;

0 commit comments

Comments
 (0)