Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit db53d3d

Browse filesBrowse files
committed
Remove forceful "using namespace arduino" from headers
First step to fix arduino/ArduinoCore-samd#606
1 parent 2af4a9c commit db53d3d
Copy full SHA for db53d3d

File tree

3 files changed

+5
-4
lines changed
Filter options

3 files changed

+5
-4
lines changed

‎api/Print.h

Copy file name to clipboardExpand all lines: api/Print.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ class Print
9393
};
9494

9595
}
96-
using namespace arduino;
96+
using arduino::Print;

‎api/String.h

Copy file name to clipboardExpand all lines: api/String.h
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,8 @@ class StringSumHelper : public String
255255

256256
} // namespace arduino
257257

258+
using arduino::__FlashStringHelper;
259+
using arduino::String;
260+
258261
#endif // __cplusplus
259262
#endif // __ARDUINO_STRINGS__

‎api/Udp.h

Copy file name to clipboardExpand all lines: api/Udp.h
+1-3Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,4 @@ class UDP : public Stream {
8787
uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); };
8888
};
8989

90-
}
91-
92-
using namespace arduino;
90+
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.