You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
15 lines
333 B
C++
15 lines
333 B
C++
// Copyright 2011-2019 Molecular Matters GmbH, all rights reserved.
|
|
|
|
#include "LC_SymbolInfo.h"
|
|
#include <stdio.h>
|
|
|
|
|
|
SymbolInfo::SymbolInfo(const char* const function, const char* const filename, unsigned int line)
|
|
: m_function()
|
|
, m_filename()
|
|
, m_line(line)
|
|
{
|
|
strcpy_s(m_function, function);
|
|
strcpy_s(m_filename, filename);
|
|
}
|