Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_SymbolInfo.cpp
Rolando Caloca ded2ed7259 Merging //UE4/Dev-Main@6134169 to Dev-Rendering (//UE4/Dev-Rendering)
#rnx
#rb none

[CL 6139854 by Rolando Caloca in Dev-Rendering branch]
2019-04-29 11:59:36 -04:00

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);
}