Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b6c93da2
Commit
b6c93da2
authored
May 20, 2005
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yaSSL fixes for Sun Forte 7
parent
5ce823ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
extra/yassl/include/yassl_types.hpp
extra/yassl/include/yassl_types.hpp
+1
-1
extra/yassl/mySTL/helpers.hpp
extra/yassl/mySTL/helpers.hpp
+2
-2
extra/yassl/mySTL/list.hpp
extra/yassl/mySTL/list.hpp
+7
-0
No files found.
extra/yassl/include/yassl_types.hpp
View file @
b6c93da2
...
...
@@ -27,7 +27,7 @@
#ifndef yaSSL_TYPES_HPP
#define yaSSL_TYPES_HPP
#include
<cstddef
>
#include
<stddef.h
>
namespace
yaSSL
{
...
...
extra/yassl/mySTL/helpers.hpp
View file @
b6c93da2
...
...
@@ -32,8 +32,8 @@
#ifdef __IBMCPP__
/*
Workaround the lack of operator new(size_t, void*)
in IBM VA C
PP
6.0
Workaround
for
the lack of operator new(size_t, void*)
in IBM VA C
++
6.0
*/
struct
Dummy
{};
inline
void
*
operator
new
(
size_t
size
,
Dummy
*
d
)
{
return
(
void
*
)
d
;
}
...
...
extra/yassl/mySTL/list.hpp
View file @
b6c93da2
...
...
@@ -38,6 +38,13 @@ namespace mySTL {
template
<
typename
T
>
class
list
{
#ifdef __SUNPRO_CC
/*
Sun Forte 7 C++ v. 5.4 needs class 'node' be public to be visible to
the nested class 'iterator' (a non-standard behaviour).
*/
public:
#endif
struct
node
{
node
(
T
t
)
:
prev_
(
0
),
next_
(
0
),
value_
(
t
)
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment