diff options
-rw-r--r-- | content/common/gpu_info.cc | 2 | ||||
-rw-r--r-- | content/common/gpu_info.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/content/common/gpu_info.cc b/content/common/gpu_info.cc index 691917d..50e227e 100644 --- a/content/common/gpu_info.cc +++ b/content/common/gpu_info.cc @@ -10,3 +10,5 @@ GPUInfo::GPUInfo() device_id(0), can_lose_context(false) { } + +GPUInfo::~GPUInfo() { } diff --git a/content/common/gpu_info.h b/content/common/gpu_info.h index 28edd31..c014e09 100644 --- a/content/common/gpu_info.h +++ b/content/common/gpu_info.h @@ -18,6 +18,7 @@ struct GPUInfo { GPUInfo(); + ~GPUInfo(); // Whether more GPUInfo fields might be collected in the future. bool finalized; |