Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oadr/oadr/ven/VEN2b.h
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
#include "../helper/ISO8601Duration.h"

using namespace std;
using namespace xercesc_3_1;
using namespace XERCES_CPP_NAMESPACE;

class VEN2b
{
Expand Down
4 changes: 2 additions & 2 deletions oadr/oadr/ven/http/HttpCurl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -673,13 +673,13 @@ void HttpCurl::setTimeouts(long connectTimeout, long requestTimeout)
{
CURLcode result;

if ((result = curl_easy_setopt(m_curl, CURLOPT_CONNECTTIMEOUT, &connectTimeout)) != 0)
if ((result = curl_easy_setopt(m_curl, CURLOPT_CONNECTTIMEOUT, connectTimeout)) != 0)
{
CurlException ex(result, m_message);
throw ex;
}

if ((result = curl_easy_setopt(m_curl, CURLOPT_TIMEOUT, &requestTimeout)) != 0)
if ((result = curl_easy_setopt(m_curl, CURLOPT_TIMEOUT, requestTimeout)) != 0)
{
CurlException ex(result, m_message);
throw ex;
Expand Down
2 changes: 1 addition & 1 deletion oadrtest/oadrtest/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ TEST_F(FooTest, DoesXyz) {

#include <xercesc/util/PlatformUtils.hpp>

using namespace xercesc_3_1;
using namespace XERCES_CPP_NAMESPACE;

int main(int argc, char **argv)
{
Expand Down
2 changes: 1 addition & 1 deletion oadrtest/oadrtest/tests/ParserTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@

using namespace oadr2b::oadr;

using namespace xercesc_3_1;
using namespace XERCES_CPP_NAMESPACE;

using namespace xsd::cxx::tree;

Expand Down
2 changes: 1 addition & 1 deletion oadrtest/oadrtest/tests/helper/ReportHelperTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ using namespace xml_schema;

using namespace oadr2b::oadr;

using namespace xercesc_3_1;
using namespace XERCES_CPP_NAMESPACE;

/********************************************************************************/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
#include <oadr/request/Oadr2bRequest.h>
#include <xercesc/util/PlatformUtils.hpp>

using namespace xercesc_3_1;
using namespace XERCES_CPP_NAMESPACE;

TEST(RegisteredReports, LOAD_REGISTERED_REPORTS)
{
Expand Down