//
// Copyright (c) 2015 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// WinRT_system_utils.cpp: Implementation of OS-specific functions for WinRT (Windows)

#include "system_utils.h"

#include <windows.h>
#include <array>

namespace angle
{

void SetLowPriorityProcess()
{
    // No equivalent to this in WinRT
}

}  // namespace angle
