https://github.com/Kitware/CMake
Revision f408667d1926167fcafbd4f4f16d117a5dbd2823 authored by Brad King on 17 December 2014, 19:44:19 UTC, committed by CMake Topic Stage on 17 December 2014, 19:44:19 UTC
0622f92d CTest: Remove code to fix scanbuild errors

2 parent s 4e61edc + 0622f92
Raw File
Tip revision: f408667d1926167fcafbd4f4f16d117a5dbd2823 authored by Brad King on 17 December 2014, 19:44:19 UTC
Merge topic 'fix_coverage_scanbuild_errors'
Tip revision: f408667
cm_xmlrpc.h
/*============================================================================
  CMake - Cross Platform Makefile Generator
  Copyright 2000-2009 Kitware, Inc., Insight Software Consortium

  Distributed under the OSI-approved BSD License (the "License");
  see accompanying file Copyright.txt for details.

  This software is distributed WITHOUT ANY WARRANTY; without even the
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  See the License for more information.
============================================================================*/
#ifndef cm_xmlrpc_h
#define cm_xmlrpc_h

/* Use the xmlrpc library configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CTEST_USE_XMLRPC
# include <xmlrpc.h>
# include <xmlrpc_client.h>
#endif

#endif
back to top