telemetry_session: Add missing includes

Prevents potential compilation issues in the future by including missing
headers for certain functions and types.
This commit is contained in:
Lioncash 2018-10-09 14:47:24 -04:00 committed by fearlessTobi
parent d5bb2a21aa
commit 61627c2042
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include "common/assert.h"
#include "common/file_util.h"
#include "common/logging/log.h"
#include "common/scm_rev.h"
#ifdef ARCHITECTURE_x86_64
#include "common/x64/cpu_detect.h"

View File

@ -5,6 +5,7 @@
#pragma once
#include <memory>
#include <string>
#include "common/telemetry.h"
namespace Core {