Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_SymbolInfo.cpp
Chris Gagnon 56e73ed431 Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 6042607 by Chris Gagnon in Dev-Editor branch]
2019-04-22 18:56:08 -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);
}