2018-04-29 23:36:18 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) 2016-2018 FIRST. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2018-05-13 17:09:56 -07:00
|
|
|
// clang-format off
|
2018-04-29 23:36:18 -07:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#pragma message "warning: llvm/StringMap.h is deprecated; include wpi/StringMap.h instead"
|
|
|
|
|
#else
|
|
|
|
|
#warning "llvm/StringMap.h is deprecated; include wpi/StringMap.h instead"
|
|
|
|
|
#endif
|
2018-05-13 17:09:56 -07:00
|
|
|
// clang-format on
|
2018-04-29 23:36:18 -07:00
|
|
|
|
|
|
|
|
#include "wpi/StringMap.h"
|
|
|
|
|
|
|
|
|
|
namespace llvm = wpi;
|