Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_SymbolInfo.cpp
Jack Porter 8951e6117b Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
#rb None

[CL 6267338 by Jack Porter in Dev-Mobile branch]
2019-05-03 01:50:07 -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);
}