Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix enums in jobs #618

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions jobs/include/aws/iotjobs/JobStatus.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ namespace Aws

namespace JobStatusMarshaller
{
const char *AWS_IOTJOBS_API ToString(JobStatus val);
JobStatus AWS_IOTJOBS_API FromString(const Aws::Crt::String &val);
AWS_IOTJOBS_API const char *ToString(JobStatus val);
AWS_IOTJOBS_API JobStatus FromString(const Aws::Crt::String &val);
} // namespace JobStatusMarshaller
} // namespace Iotjobs
} // namespace Aws
4 changes: 2 additions & 2 deletions jobs/include/aws/iotjobs/RejectedErrorCode.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ namespace Aws

namespace RejectedErrorCodeMarshaller
{
const char *AWS_IOTJOBS_API ToString(RejectedErrorCode val);
RejectedErrorCode AWS_IOTJOBS_API FromString(const Aws::Crt::String &val);
AWS_IOTJOBS_API const char *ToString(RejectedErrorCode val);
AWS_IOTJOBS_API RejectedErrorCode FromString(const Aws::Crt::String &val);
} // namespace RejectedErrorCodeMarshaller
} // namespace Iotjobs
} // namespace Aws
Loading